组织ID: |
org.eclipse.jetty |
项目ID: |
jetty-reactive-httpclient |
版本: |
1.0.2 |
最后修改时间: |
2018-11-29 23:23:59 |
包类型: |
jar |
标题: |
Jetty ReactiveStreams HttpClient |
描述: |
Jetty ReactiveStreams HttpClient
|
相关URL: |
https://github.com/jetty-project/jetty-reactive-httpclient |
大小: |
38.17KB |
|
Maven引入代码: |
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-reactive-httpclient</artifactId>
<version>1.0.2</version>
</dependency>
|
Gradle引入代码: |
org.eclipse.jetty:jetty-reactive-httpclient:1.0.2
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-reactive-httpclient</artifactId>
<version>1.0.2</version>
<packaging>bundle</packaging>
<name>Jetty ReactiveStreams HttpClient</name>
<url>https://github.com/jetty-project/jetty-reactive-httpclient</url>
<description>
Jetty ReactiveStreams HttpClient
</description>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>sbordet</id>
<name>Simone Bordet</name>
<email>sbordet@webtide.com</email>
<organization>Webtide</organization>
<organizationUrl>https://webtide.com</organizationUrl>
</developer>
</developers>
<distributionManagement>
<repository>
<id>oss.sonatype.org</id>
<name>OSS Maven2 Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>oss.sonatype.org</id>
<name>OSS Maven2 Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/jetty-snapshots</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/jetty-project/jetty-reactive-httpclient.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jetty-project/jetty-reactive-httpclient.git</developerConnection>
<url>https://github.com/jetty-project/jetty-reactive-httpclient</url>
<tag>1.0.2</tag>
</scm>
<organization>
<name>The Jetty Project</name>
<url>https://eclipse.org/jetty</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty-version>9.4.14.v20181114</jetty-version>
<slf4j-version>1.7.25</slf4j-version>
<log4j2-version>2.11.1</log4j2-version>
<reactivestreams-version>1.0.2</reactivestreams-version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>require-jdk8</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>copyright-header.txt</header>
<failIfMissing>true</failIfMissing>
<strictCheck>true</strictCheck>
<properties>
<copyright-range>${project.inceptionYear}-2018</copyright-range>
</properties>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.reactive.client</Bundle-SymbolicName>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>jacoco-initialize</id>
<phase>initialize</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-report</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<goals>deploy</goals>
<preparationGoals>clean install</preparationGoals>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>true</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>4.1.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>jdk9</id>
<activation>
<jdk>[1.9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>8</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>
<additionalOption>-html5</additionalOption>
</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams</artifactId>
<version>${reactivestreams-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams-tck</artifactId>
<version>${reactivestreams-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-server</artifactId>
<version>${jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-http-client-transport</artifactId>
<version>${jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/org.eclipse.jetty/jetty-reactive-httpclient/pom.properties
META-INF/maven/org.eclipse.jetty/jetty-reactive-httpclient/pom.xml
org.eclipse.jetty.reactive.client.ContentChunk.class
org.eclipse.jetty.reactive.client.ReactiveRequest$Builder.class
org.eclipse.jetty.reactive.client.ReactiveRequest$Content.class
org.eclipse.jetty.reactive.client.ReactiveRequest$Event$Type.class
org.eclipse.jetty.reactive.client.ReactiveRequest$Event.class
org.eclipse.jetty.reactive.client.ReactiveRequest.class
org.eclipse.jetty.reactive.client.ReactiveResponse$Content.class
org.eclipse.jetty.reactive.client.ReactiveResponse$Event$Type.class
org.eclipse.jetty.reactive.client.ReactiveResponse$Event.class
org.eclipse.jetty.reactive.client.ReactiveResponse.class
org.eclipse.jetty.reactive.client.internal.AbstractEventPublisher.class
org.eclipse.jetty.reactive.client.internal.AbstractSingleProcessor.class
org.eclipse.jetty.reactive.client.internal.AbstractSinglePublisher.class
org.eclipse.jetty.reactive.client.internal.BufferingProcessor.class
org.eclipse.jetty.reactive.client.internal.DiscardingProcessor.class
org.eclipse.jetty.reactive.client.internal.PublisherContent.class
org.eclipse.jetty.reactive.client.internal.PublisherContentProvider$1.class
org.eclipse.jetty.reactive.client.internal.PublisherContentProvider.class
org.eclipse.jetty.reactive.client.internal.QueuedSinglePublisher$1.class
org.eclipse.jetty.reactive.client.internal.QueuedSinglePublisher$Failure.class
org.eclipse.jetty.reactive.client.internal.QueuedSinglePublisher$Terminal.class
org.eclipse.jetty.reactive.client.internal.QueuedSinglePublisher.class
org.eclipse.jetty.reactive.client.internal.RequestEventPublisher.class
org.eclipse.jetty.reactive.client.internal.ResponseEventPublisher.class
org.eclipse.jetty.reactive.client.internal.ResponseListenerPublisher.class
org.eclipse.jetty.reactive.client.internal.StringContent.class
|
依赖Jar: |
reactive-streams-${reactivestreams-version}.jar
/org.reactivestreams/reactive-streams/${reactivestreams-version}
查看reactive-streams所有版本文件
jetty-client-${jetty-version}.jar
/org.eclipse.jetty/jetty-client/${jetty-version}
查看jetty-client所有版本文件
slf4j-api-${slf4j-version}.jar
/org.slf4j/slf4j-api/${slf4j-version}
查看slf4j-api所有版本文件
reactive-streams-tck-${reactivestreams-version}.jar
/org.reactivestreams/reactive-streams-tck/${reactivestreams-version}
查看reactive-streams-tck所有版本文件
rxjava-2.2.4.jar
/io.reactivex.rxjava2/rxjava/2.2.4
查看rxjava所有版本文件
jetty-server-${jetty-version}.jar
/org.eclipse.jetty/jetty-server/${jetty-version}
查看jetty-server所有版本文件
http2-server-${jetty-version}.jar
/org.eclipse.jetty.http2/http2-server/${jetty-version}
查看http2-server所有版本文件
http2-http-client-transport-${jetty-version}.jar
/org.eclipse.jetty.http2/http2-http-client-transport/${jetty-version}
查看http2-http-client-transport所有版本文件
log4j-slf4j-impl-${log4j2-version}.jar
/org.apache.logging.log4j/log4j-slf4j-impl/${log4j2-version}
查看log4j-slf4j-impl所有版本文件
testng-6.14.3.jar
/org.testng/testng/6.14.3
查看testng所有版本文件
|