You can download ziplet-2.1.2.jar in this page.
The Apache Software License, Version 2.0
ziplet-2.1.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.ziplet/ziplet/pom.properties META-INF/maven/com.github.ziplet/ziplet/pom.xml NOTICE.template com.github.ziplet.filter.compression.CompressedHttpServletRequest.class com.github.ziplet.filter.compression.CompressingFilter.class com.github.ziplet.filter.compression.CompressingFilterContext.class com.github.ziplet.filter.compression.CompressingHttpServletResponse.class com.github.ziplet.filter.compression.CompressingInputStream.class com.github.ziplet.filter.compression.CompressingOutputStream.class com.github.ziplet.filter.compression.CompressingServletInputStream.class com.github.ziplet.filter.compression.CompressingServletOutputStream.class com.github.ziplet.filter.compression.CompressingStreamFactory.class com.github.ziplet.filter.compression.EmptyEnumeration.class com.github.ziplet.filter.compression.InputStatsCallback.class com.github.ziplet.filter.compression.IteratorEnumeration.class com.github.ziplet.filter.compression.OutputStatsCallback.class com.github.ziplet.filter.compression.StatsField.class com.github.ziplet.filter.compression.StatsInputStream.class com.github.ziplet.filter.compression.StatsOutputStream.class com.github.ziplet.filter.compression.ThresholdOutputStream.class com.github.ziplet.filter.compression.statistics.CompressingFilterEmptyStats.class com.github.ziplet.filter.compression.statistics.CompressingFilterStats.class com.github.ziplet.filter.compression.statistics.CompressingFilterStatsImpl.class license-mappings.xml
ziplet-2.1.2.pom file content.
<?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.github.ziplet</groupId> <artifactId>ziplet</artifactId> <version>2.1.2</version> <packaging>jar</packaging> <name>ziplet</name> <description>his filter can, based on HTTP headers in a HttpServletRequest, compress data written to the HttpServletResponse, or decompress data read from the request. When supported by the client browser, this can potentially greatly reduce the number of bytes written across the network from and to the client. As a Filter, this class can also be easily added to any J2EE 1.3+ web application. </description> <url>https://github.com/ziplet/ziplet</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:ziplet/ziplet.git</connection> <developerConnection>scm:git:git@github.com:ziplet/ziplet.git</developerConnection> <url>git@github.com:ziplet/ziplet.git</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>fgaule</id> <name>Federico Gaule</name> <email>federico.gaule@gmail.com</email> <timezone>-3</timezone> <organization>Despegar</organization> <organizationUrl>http://www.despegar.com</organizationUrl> </developer> <developer> <id>fededonna</id> <name>Federico Donnarumma</name> <email>fdonnarumma@gmail.com</email> <timezone>-3</timezone> <organization>Mulesoft</organization> <organizationUrl>https://www.mulesoft.com/</organizationUrl> </developer> </developers> <properties> <sl4j.version>1.7.6</sl4j.version> </properties> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${sl4j.version}</version> </dependency> <!--TEST--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.mockrunner</groupId> <artifactId>mockrunner-servlet</artifactId> <version>1.0.0</version> <scope>test</scope> </dependency> </dependencies> <!-- Maven Central --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Make a jar and put the sources in the jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <phase>prepare-package</phase> <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> <configuration> <maxmemory>2048m</maxmemory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.16</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>maven-notice-plugin</artifactId> <version>1.0.5</version> <configuration> <noticeTemplate>src/main/resources/NOTICE.template</noticeTemplate> <licenseMapping> <param>src/main/resources/license-mappings.xml</param> </licenseMapping> </configuration> </plugin> <!-- Maven central staging --> <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> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!-- GPG Signed release --> <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> <!-- Javadoc & Sources --> <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> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.github.ziplet</groupId> <artifactId>ziplet</artifactId> <version>2.1.2</version> </dependency>
If you think the following ziplet-2.1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download ziplet-2.1.2.jar file