组织ID: |
com.twitter |
项目ID: |
hpack |
版本: |
0.9.1 |
最后修改时间: |
2019-10-25 02:47:59 |
包类型: |
jar |
标题: |
HPACK |
描述: |
Header Compression for HTTP/2 |
相关URL: |
http://github.com/twitter/hpack |
大小: |
28.51KB |
|
Maven引入代码: |
<dependency>
<groupId>com.twitter</groupId>
<artifactId>hpack</artifactId>
<version>0.9.1</version>
</dependency>
|
Gradle引入代码: |
com.twitter:hpack:0.9.1
|
下载Jar包: |
|
POM文件内容: |
<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.twitter</groupId>
<artifactId>hpack</artifactId>
<version>0.9.1</version>
<name>HPACK</name>
<url>http://github.com/twitter/hpack</url>
<description>Header Compression for HTTP/2</description>
<scm>
<connection>scm:git:git@github.com:twitter/hpack.git</connection>
<url>scm:git:git@github.com:twitter/hpack.git</url>
<developerConnection>scm:git:git@github.com:twitter/hpack.git</developerConnection>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Jeff Pinner</name>
<email>jpinner@twitter.com</email>
</developer>
<developer>
<name>Bill Gallagher</name>
<email>bgallagher@twitter.com</email>
</developer>
</developers>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<encoding>UTF-8</encoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype OSS</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<!-- Test Deps -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<argLine>-Xmx1024m</argLine>
<redirectTestOutputToFile>false</redirectTestOutputToFile>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*Spec.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.2.0</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</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.7</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.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.twitter.hpack.Decoder$1.class
com.twitter.hpack.Decoder$State.class
com.twitter.hpack.Decoder.class
com.twitter.hpack.Encoder$1.class
com.twitter.hpack.Encoder$HeaderEntry.class
com.twitter.hpack.Encoder.class
com.twitter.hpack.HeaderField.class
com.twitter.hpack.HeaderListener.class
com.twitter.hpack.HeaderTable.class
com.twitter.hpack.HpackUtil$IndexType.class
com.twitter.hpack.HpackUtil.class
com.twitter.hpack.Huffman.class
com.twitter.hpack.HuffmanDecoder$Node.class
com.twitter.hpack.HuffmanDecoder.class
com.twitter.hpack.HuffmanEncoder.class
com.twitter.hpack.StaticTable.class
META-INF/maven/com.twitter/hpack/pom.xml
META-INF/maven/com.twitter/hpack/pom.properties
|
依赖Jar: |
gson-2.2.4.jar
/com.google.code.gson/gson/2.2.4
查看gson所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
mockito-core-1.9.5.jar
/org.mockito/mockito-core/1.9.5
查看mockito-core所有版本文件
|