Repository: ant-antlibs-compress Updated Branches: refs/heads/master 9668aba32 -> 8756a84c1
adapt POM Project: http://git-wip-us.apache.org/repos/asf/ant-antlibs-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-antlibs-compress/commit/d1a94213 Tree: http://git-wip-us.apache.org/repos/asf/ant-antlibs-compress/tree/d1a94213 Diff: http://git-wip-us.apache.org/repos/asf/ant-antlibs-compress/diff/d1a94213 Branch: refs/heads/master Commit: d1a94213a8d5001d82643c3c8632796db15c15cd Parents: 9668aba Author: Stefan Bodewig <[email protected]> Authored: Tue May 23 20:36:07 2017 +0200 Committer: Stefan Bodewig <[email protected]> Committed: Tue May 23 20:36:07 2017 +0200 ---------------------------------------------------------------------- project-template.pom | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-antlibs-compress/blob/d1a94213/project-template.pom ---------------------------------------------------------------------- diff --git a/project-template.pom b/project-template.pom index 89b0a73..216ebff 100644 --- a/project-template.pom +++ b/project-template.pom @@ -26,9 +26,10 @@ <name>Apache Compress Antlib</name> <url>http://ant.apache.org/antlibs/compress/</url> <description> - Provides tasks and types that deal with AR, ARJ, CPIO, TAR, DUMP, - 7Z and ZIP archives as well as BZIP2, PACK200, GZIP, LZMA and XZ - compressed files based on Apache Commons Compress. + Provides tasks and types that deal with AR, ARJ, CPIO, TAR, + DUMP, 7Z and ZIP archives as well as BZIP2, PACK200, GZIP, LZMA, + Snappy, LZ4, Brotli and XZ compressed files based on Apache + Commons Compress. </description> <licenses> <license> @@ -50,12 +51,17 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>1.8</version> + <version>1.14</version> </dependency> <dependency> <groupId>org.tukaani</groupId> <artifactId>xz</artifactId> - <version>1.5</version> + <version>1.6</version> + </dependency> + <dependency> + <groupId>org.brotli</groupId> + <artifactId>dec</artifactId> + <version>0.1.2</version> </dependency> </dependencies> </project>
