blob: 791b9dca237dcb4ce69e45b9c553c7905a28a5d9 [file] [log] [blame]
Sebastian Bazley5f4310f2009-03-06 13:52:00 +00001<?xml version="1.0" encoding="UTF-8"?>
Torsten Curdt444238f2008-07-10 21:36:43 +00002<!--
3
4 Licensed to the Apache Software Foundation (ASF) under one or more
5 contributor license agreements. See the NOTICE file distributed with
6 this work for additional information regarding copyright ownership.
7 The ASF licenses this file to You under the Apache License, Version 2.0
8 (the "License"); you may not use this file except in compliance with
9 the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18
19-->
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000020<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/maven-v4_0_0.xsd">
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000021 <modelVersion>4.0.0</modelVersion>
Torsten Curdtca165392008-07-10 10:17:44 +000022 <parent>
23 <groupId>org.apache.commons</groupId>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000024 <artifactId>commons-parent</artifactId>
Niall Pembertonc520d002009-10-20 23:00:29 +000025 <version>12</version>
Torsten Curdtca165392008-07-10 10:17:44 +000026 </parent>
27
28 <artifactId>commons-compress</artifactId>
Christian Grobmeier8eefe7d2009-05-14 04:37:34 +000029 <version>1.1-SNAPSHOT</version>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000030 <name>Commons Compress</name>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000031 <url>http://commons.apache.org/compress/</url>
Sebastian Bazley0515b722009-03-23 22:33:41 +000032 <description>Commons Compress is a component that contains Ar, Cpio, Jar, Tar, Zip and BZip2 packages</description>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000033
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000034 <issueManagement>
35 <system>jira</system>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000036 <url>http://issues.apache.org/jira/browse/COMPRESS</url>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000037 </issueManagement>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000038
Torsten Curdtca165392008-07-10 10:17:44 +000039 <dependencies>
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
Stefan Bodewigb2e789e2009-03-20 13:35:38 +000043 <version>3.8.2</version>
Torsten Curdtca165392008-07-10 10:17:44 +000044 <scope>test</scope>
45 </dependency>
46 </dependencies>
47
48 <developers>
49 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000050 <name>Torsten Curdt</name>
51 <id>tcurdt</id>
52 <email>tcurdt at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000053 </developer>
54 <developer>
Stefan Bodewig743d7c52009-02-05 11:01:35 +000055 <name>Stefan Bodewig</name>
56 <id>bodewig</id>
57 <email>bodewig at apache.org</email>
58 </developer>
Sebastian Bazley93fe95d2009-04-02 13:48:38 +000059 <developer>
60 <name>Sebastian Bazley</name>
61 <id>sebb</id>
62 <email>sebb at apache.org</email>
63 </developer>
Christian Grobmeierc9affe02009-04-10 19:36:26 +000064 <developer>
65 <name>Christian Grobmeier</name>
66 <email>grobmeier at apache.org</email>
67 </developer>
Torsten Curdtca165392008-07-10 10:17:44 +000068 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000069
70 <contributors>
71 <contributor>
Stefan Bodewige451ee42009-02-19 13:36:59 +000072 <name>Wolfgang Glas</name>
73 <email>wolfgang.glas at ev-i.at</email>
74 </contributor>
Matthew Jason Bensona24f8312009-03-24 20:41:45 +000075 <contributor>
76 <name>Christian Kohlschütte</name>
77 <email>ck@newsclub.de</email>
78 </contributor>
Torsten Curdtc06ef182009-01-07 12:53:42 +000079 </contributors>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000080
Torsten Curdtca165392008-07-10 10:17:44 +000081 <scm>
Christian Grobmeier8eefe7d2009-05-14 04:37:34 +000082 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
83 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection>
84 <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url>
Torsten Curdtca165392008-07-10 10:17:44 +000085 </scm>
86
87 <distributionManagement>
88 <site>
89 <id>website</id>
90 <name>Apache Website</name>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000091 <url>scp://people.apache.org/www/commons.apache.org/compress/</url>
Torsten Curdtca165392008-07-10 10:17:44 +000092 </site>
93 </distributionManagement>
94
95 <properties>
Sebastian Bazley5f4310f2009-03-06 13:52:00 +000096 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
97 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Niall Pembertonf1df5fa2009-02-12 23:42:56 +000098 <maven.compile.source>1.4</maven.compile.source>
99 <maven.compile.target>1.4</maven.compile.target>
Torsten Curdtca165392008-07-10 10:17:44 +0000100 <commons.componentid>compress</commons.componentid>
Niall Pemberton78f2b972009-03-23 23:04:13 +0000101 <commons.jira.id>COMPRESS</commons.jira.id>
102 <commons.jira.pid>12310904</commons.jira.pid>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000103 <!-- configuration bits for cutting a release candidate -->
104 <commons.release.version>1.0</commons.release.version>
Christian Grobmeier61bf5912009-05-13 05:57:04 +0000105 <commons.rc.version>RC2</commons.rc.version>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000106 </properties>
Torsten Curdtca165392008-07-10 10:17:44 +0000107
108 <build>
Sebastian Bazley0fc47a92009-05-11 21:56:15 +0000109 <pluginManagement>
110 <plugins>
111 <plugin>
Sebastian Bazleyfc4fe582009-05-12 01:00:15 +0000112 <!-- Override plugin versions in parent Pom, which are too old to support manifests -->
Sebastian Bazley0fc47a92009-05-11 21:56:15 +0000113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-source-plugin</artifactId>
115 <version>2.1</version>
116 </plugin>
Sebastian Bazleyfc4fe582009-05-12 01:00:15 +0000117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-javadoc-plugin</artifactId>
120 <version>2.5</version>
121 </plugin>
Sebastian Bazley0fc47a92009-05-11 21:56:15 +0000122 </plugins>
123 </pluginManagement>
Torsten Curdtca165392008-07-10 10:17:44 +0000124 <plugins>
Stefan Bodewig75d59c32009-02-12 10:03:44 +0000125 <plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000126 <!-- create the source and binary assemblies -->
127 <artifactId>maven-assembly-plugin</artifactId>
Torsten Curdtca165392008-07-10 10:17:44 +0000128 <configuration>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000129 <descriptors>
130 <descriptor>src/assembly/bin.xml</descriptor>
131 <descriptor>src/assembly/src.xml</descriptor>
132 </descriptors>
133 <tarLongFileMode>gnu</tarLongFileMode>
Torsten Curdtca165392008-07-10 10:17:44 +0000134 </configuration>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000135 </plugin>
Sebastian Bazley0fc47a92009-05-11 21:56:15 +0000136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-source-plugin</artifactId>
139 <configuration>
140 <archive>
141 <manifest>
142 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
143 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
144 </manifest>
145 </archive>
146 </configuration>
147 </plugin>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000148 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000149 </build>
150
151 <reporting>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000152 <plugins>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000153 <plugin>
154 <!-- generate the changes report from changes.xml and link to JIRA -->
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-changes-plugin</artifactId>
157 <version>2.0</version>
158 <configuration>
159 <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
160 </configuration>
161 <reportSets>
162 <reportSet>
163 <reports>
164 <report>changes-report</report>
165 </reports>
166 </reportSet>
167 </reportSets>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000168 </plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000169 <plugin>
170 <!-- generate a code coverage report -->
171 <groupId>org.codehaus.mojo</groupId>
172 <artifactId>cobertura-maven-plugin</artifactId>
173 <version>2.2</version>
174 </plugin>
175 <plugin>
176 <!-- generate the PMD reports -->
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-pmd-plugin</artifactId>
179 <version>2.4</version>
180 <configuration>
181 <minimumTokens>200</minimumTokens>
182 <targetJdk>${maven.compile.source}</targetJdk>
183 <rulesets>
184 <ruleset>/rulesets/basic.xml</ruleset>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000185 <ruleset>/rulesets/finalizers.xml</ruleset>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000186 <ruleset>/rulesets/imports.xml</ruleset>
187 <ruleset>/rulesets/unusedcode.xml</ruleset>
188 </rulesets>
189 </configuration>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000190 </plugin>
Sebastian Bazleyfc4fe582009-05-12 01:00:15 +0000191 <!-- Override Javadoc config in parent pom to add default manifest entries -->
192 <plugin>
193 <groupId>org.apache.maven.plugins</groupId>
194 <artifactId>maven-javadoc-plugin</artifactId>
195 <configuration>
196 <archive>
197 <manifest>
198 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
199 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
200 </manifest>
201 </archive>
202 <aggregate>false</aggregate>
203 <source>${maven.compile.source}</source>
204 <encoding>${commons.encoding}</encoding>
205 <docEncoding>${commons.docEncoding}</docEncoding>
206 <linksource>true</linksource>
207 <links>
208 <link>http://java.sun.com/javase/6/docs/api/</link>
209 </links>
210 </configuration>
211 </plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000212 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000213 </reporting>
214
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000215 <profiles>
216 <profile>
217 <id>rc</id>
218 <distributionManagement>
219 <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
220 <site>
221 <id>apache.website</id>
222 <name>Apache Commons Release Candidate Staging Site</name>
223 <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
224 </site>
225 </distributionManagement>
226 </profile>
227 </profiles>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000228
Torsten Curdtca165392008-07-10 10:17:44 +0000229</project>