| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>${m2.groupID}</groupId> |
| <artifactId>${artifact.name}</artifactId> |
| <packaging>jar</packaging> |
| <version>${artifact.version}</version> |
| <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, |
| Snappy, LZ4, Brotli and XZ compressed files based on Apache |
| Commons Compress. |
| </description> |
| <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> |
| <organization> |
| <name>The Apache Software Foundation</name> |
| <url>http://www.apache.org/</url> |
| </organization> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>[1.8.0,)</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-compress</artifactId> |
| <version>1.14</version> |
| </dependency> |
| <dependency> |
| <groupId>org.tukaani</groupId> |
| <artifactId>xz</artifactId> |
| <version>1.6</version> |
| </dependency> |
| <dependency> |
| <groupId>org.brotli</groupId> |
| <artifactId>dec</artifactId> |
| <version>0.1.2</version> |
| </dependency> |
| </dependencies> |
| </project> |