| 组织ID: |
com.typesafe.netty |
| 项目ID: |
netty-http-pipelining |
| 版本: |
1.1.4 |
| 最后修改时间: |
2018-07-25 18:10:22 |
| 包类型: |
jar |
| 标题: |
${project.groupId}:${project.artifactId} |
| 描述: |
This library provides a handler and some new message types that enable http pipelining in Netty |
| 相关URL: |
https://github.com/typesafehub/netty-http-pipelining |
| 大小: |
7.51KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.typesafe.netty</groupId>
<artifactId>netty-http-pipelining</artifactId>
<version>1.1.4</version>
</dependency>
|
| Gradle引入代码: |
com.typesafe.netty:netty-http-pipelining:1.1.4
|
| 下载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>com.typesafe.netty</groupId>
<artifactId>netty-http-pipelining</artifactId>
<version>1.1.4</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>This library provides a handler and some new message types that enable http pipelining in Netty</description>
<inceptionYear>2013</inceptionYear>
<url>https://github.com/typesafehub/netty-http-pipelining</url>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/typesafehub/netty-http-pipelining/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Christopher Hunt</name>
<email>christopher.hunt@typesafe.com</email>
<organization>Typesafe</organization>
<organizationUrl>http://typesafe.com</organizationUrl>
</developer>
</developers>
<organization>
<name>Typesafe</name>
<url>http://typesafe.com/</url>
</organization>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>3.10.1.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git://github.com/typesafehub/netty-http-pipelining.git</connection>
<developerConnection>scm:git:git@github.com:typesafehub/netty-http-pipelining.git</developerConnection>
<url>scm:git://github.com/typesafehub/netty-http-pipelining.git</url>
<tag>netty-http-pipelining-1.1.4</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.typesafe.netty.http.pipelining.HttpPipeliningHandler$1.class
com.typesafe.netty.http.pipelining.HttpPipeliningHandler.class
com.typesafe.netty.http.pipelining.OrderedDownstreamChannelEvent.class
com.typesafe.netty.http.pipelining.OrderedUpstreamMessageEvent.class
META-INF/maven/com.typesafe.netty/netty-http-pipelining/pom.xml
META-INF/maven/com.typesafe.netty/netty-http-pipelining/pom.properties
|
| 依赖Jar: |
netty-3.10.1.Final.jar
/io.netty/netty/3.10.1.Final
查看netty所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|