blob: d8eb41c768629ebcfb303388d065511506fc52a2 [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 Pembertona48dd012010-04-21 09:02:56 +000025 <version>15</version>
Torsten Curdtca165392008-07-10 10:17:44 +000026 </parent>
27
Sebastian Bazley606bd732010-05-21 15:09:32 +000028 <groupId>org.apache.commons</groupId>
Torsten Curdtca165392008-07-10 10:17:44 +000029 <artifactId>commons-compress</artifactId>
Christian Grobmeier8eefe7d2009-05-14 04:37:34 +000030 <version>1.1-SNAPSHOT</version>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000031 <name>Commons Compress</name>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000032 <url>http://commons.apache.org/compress/</url>
Sebastian Bazley842dfd82010-04-13 19:25:29 +000033 <description>
34 Commons Compress defines an API for working with compression and archive formats.
35 These include: bzip2, gzip and ar, cpio, jar, tar, zip.
36 </description>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000037
Sebastian Bazleybea8d432010-04-13 19:16:58 +000038 <properties>
39 <maven.compile.source>1.4</maven.compile.source>
40 <maven.compile.target>1.4</maven.compile.target>
41 <commons.componentid>compress</commons.componentid>
42 <commons.jira.id>COMPRESS</commons.jira.id>
43 <commons.jira.pid>12310904</commons.jira.pid>
44 <!-- configuration bits for cutting a release candidate -->
45 <commons.release.version>1.0</commons.release.version>
46 <commons.rc.version>RC2</commons.rc.version>
47 </properties>
48
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000049 <issueManagement>
50 <system>jira</system>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000051 <url>http://issues.apache.org/jira/browse/COMPRESS</url>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000052 </issueManagement>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000053
Torsten Curdtca165392008-07-10 10:17:44 +000054 <dependencies>
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
Stefan Bodewigb2e789e2009-03-20 13:35:38 +000058 <version>3.8.2</version>
Torsten Curdtca165392008-07-10 10:17:44 +000059 <scope>test</scope>
60 </dependency>
61 </dependencies>
62
63 <developers>
64 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000065 <name>Torsten Curdt</name>
66 <id>tcurdt</id>
67 <email>tcurdt at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000068 </developer>
69 <developer>
Stefan Bodewig743d7c52009-02-05 11:01:35 +000070 <name>Stefan Bodewig</name>
71 <id>bodewig</id>
72 <email>bodewig at apache.org</email>
73 </developer>
Sebastian Bazley93fe95d2009-04-02 13:48:38 +000074 <developer>
75 <name>Sebastian Bazley</name>
76 <id>sebb</id>
77 <email>sebb at apache.org</email>
78 </developer>
Christian Grobmeierc9affe02009-04-10 19:36:26 +000079 <developer>
80 <name>Christian Grobmeier</name>
81 <email>grobmeier at apache.org</email>
82 </developer>
Torsten Curdtca165392008-07-10 10:17:44 +000083 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000084
85 <contributors>
86 <contributor>
Stefan Bodewige451ee42009-02-19 13:36:59 +000087 <name>Wolfgang Glas</name>
88 <email>wolfgang.glas at ev-i.at</email>
89 </contributor>
Matthew Jason Bensona24f8312009-03-24 20:41:45 +000090 <contributor>
91 <name>Christian Kohlschütte</name>
92 <email>ck@newsclub.de</email>
93 </contributor>
Torsten Curdtc06ef182009-01-07 12:53:42 +000094 </contributors>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +000095
Torsten Curdtca165392008-07-10 10:17:44 +000096 <scm>
Christian Grobmeier8eefe7d2009-05-14 04:37:34 +000097 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
98 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection>
99 <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url>
Torsten Curdtca165392008-07-10 10:17:44 +0000100 </scm>
101
102 <distributionManagement>
103 <site>
104 <id>website</id>
105 <name>Apache Website</name>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000106 <url>scp://people.apache.org/www/commons.apache.org/compress/</url>
Torsten Curdtca165392008-07-10 10:17:44 +0000107 </site>
108 </distributionManagement>
109
Torsten Curdtca165392008-07-10 10:17:44 +0000110 <build>
Torsten Curdtca165392008-07-10 10:17:44 +0000111 <plugins>
Stefan Bodewig75d59c32009-02-12 10:03:44 +0000112 <plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000113 <!-- create the source and binary assemblies -->
114 <artifactId>maven-assembly-plugin</artifactId>
Torsten Curdtca165392008-07-10 10:17:44 +0000115 <configuration>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000116 <descriptors>
117 <descriptor>src/assembly/bin.xml</descriptor>
118 <descriptor>src/assembly/src.xml</descriptor>
119 </descriptors>
120 <tarLongFileMode>gnu</tarLongFileMode>
Torsten Curdtca165392008-07-10 10:17:44 +0000121 </configuration>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000122 </plugin>
Sebastian Bazley0fc47a92009-05-11 21:56:15 +0000123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-source-plugin</artifactId>
126 <configuration>
127 <archive>
128 <manifest>
129 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
130 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
131 </manifest>
132 </archive>
133 </configuration>
134 </plugin>
Sebastian Bazleydfc66382010-05-23 11:53:07 +0000135 <plugin>
136 <artifactId>maven-jar-plugin</artifactId>
137 <configuration>
138 <archive>
139 <manifestEntries>
140 <Main-Class>org.apache.commons.compress.archivers.Lister</Main-Class>
141 </manifestEntries>
142 </archive>
143 </configuration>
144 </plugin>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000145 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000146 </build>
147
148 <reporting>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000149 <plugins>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000150 <plugin>
151 <!-- generate the changes report from changes.xml and link to JIRA -->
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-changes-plugin</artifactId>
Sebastian Bazley48882f12010-04-13 21:02:37 +0000154 <version>2.3</version>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000155 <configuration>
Sebastian Bazley48882f12010-04-13 21:02:37 +0000156 <issueLinkTemplatePerSystem>
157 <default>%URL%/%ISSUE%</default>
158 </issueLinkTemplatePerSystem>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000159 </configuration>
160 <reportSets>
161 <reportSet>
162 <reports>
163 <report>changes-report</report>
Sebastian Bazley48882f12010-04-13 21:02:37 +0000164 <report>jira-report</report>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000165 </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>
Sebastian Bazley23dd8092010-05-24 18:25:52 +0000210 <tags>
211 <tag>
212 <name>Immutable</name>
213 <placement>a</placement>
214 <head>This class is immutable</head>
215 </tag>
216 <tag>
217 <name>NotThreadSafe</name>
218 <placement>a</placement>
219 <head>This class is not thread-safe</head>
220 </tag>
221 <tag>
222 <name>ThreadSafe</name>
223 <placement>a</placement>
224 <head>This class is thread-safe</head>
225 </tag>
226 </tags>
Sebastian Bazleyfc4fe582009-05-12 01:00:15 +0000227 </configuration>
228 </plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000229 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000230 </reporting>
231
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000232 <profiles>
233 <profile>
234 <id>rc</id>
235 <distributionManagement>
236 <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
237 <site>
238 <id>apache.website</id>
239 <name>Apache Commons Release Candidate Staging Site</name>
240 <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
241 </site>
242 </distributionManagement>
243 </profile>
Sebastian Bazley6021ccb2010-04-14 00:49:28 +0000244 <profile>
245 <id>relnotes</id>
246 <!-- Override the built-in announce.vm in order to generate release notes -->
247 <build>
248 <plugins>
249 <plugin>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-changes-plugin</artifactId>
252 <version>2.3</version>
253 <configuration>
254 <template>release-notes.vm</template>
255 <templateDirectory>src/changes</templateDirectory>
256 </configuration>
257 </plugin>
258 </plugins>
259 </build>
260 </profile>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000261 </profiles>
Dennis Lundberg4dcba5a2009-03-23 23:10:54 +0000262
Torsten Curdtca165392008-07-10 10:17:44 +0000263</project>