blob: 76d304620b031f2e5da60fde979bcf94644b10ff [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">
21 <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>
25 <version>11</version>
Torsten Curdtca165392008-07-10 10:17:44 +000026 </parent>
27
28 <artifactId>commons-compress</artifactId>
29 <version>1.0-SNAPSHOT</version>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000030 <name>Commons Compress</name>
Torsten Curdtca165392008-07-10 10:17:44 +000031 <url>http://commons.apache.org/sandbox/compress/</url>
32 <description>Commons Compress is a component that contains Tar, Zip and BZip2 packages</description>
33
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000034 <issueManagement>
35 <system>jira</system>
36 <url>http://issues.apache.org/jira/browse/SANDBOX</url>
37 </issueManagement>
38
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>
Torsten Curdtc06ef182009-01-07 12:53:42 +000055 <name>Henri Yandell</name>
56 <id>bayard</id>
57 <email>bayard at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000058 </developer>
Stefan Bodewig743d7c52009-02-05 11:01:35 +000059 <developer>
60 <name>Stefan Bodewig</name>
61 <id>bodewig</id>
62 <email>bodewig at apache.org</email>
63 </developer>
Torsten Curdtca165392008-07-10 10:17:44 +000064 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000065
66 <contributors>
67 <contributor>
68 <name>Christian Grobmeier</name>
69 <email>grobmeier at gmail.com</email>
70 </contributor>
Stefan Bodewige451ee42009-02-19 13:36:59 +000071 <contributor>
72 <name>Wolfgang Glas</name>
73 <email>wolfgang.glas at ev-i.at</email>
74 </contributor>
Torsten Curdtc06ef182009-01-07 12:53:42 +000075 </contributors>
Torsten Curdtca165392008-07-10 10:17:44 +000076
77 <scm>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000078 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
79 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection>
80 <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url>
Torsten Curdtca165392008-07-10 10:17:44 +000081 </scm>
82
83 <distributionManagement>
84 <site>
85 <id>website</id>
86 <name>Apache Website</name>
87 <url>scp://people.apache.org/www/commons.apache.org/sandbox/compress/</url>
88 </site>
89 </distributionManagement>
90
91 <properties>
Sebastian Bazley5f4310f2009-03-06 13:52:00 +000092 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
93 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Niall Pembertonf1df5fa2009-02-12 23:42:56 +000094 <maven.compile.source>1.4</maven.compile.source>
95 <maven.compile.target>1.4</maven.compile.target>
Torsten Curdtca165392008-07-10 10:17:44 +000096 <commons.componentid>compress</commons.componentid>
97 <commons.jira.componentid>12311183</commons.jira.componentid>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +000098 <!-- configuration bits for cutting a release candidate -->
99 <commons.release.version>1.0</commons.release.version>
100 <commons.rc.version>RC1</commons.rc.version>
Torsten Curdtca165392008-07-10 10:17:44 +0000101 </properties>
102
103 <build>
Torsten Curdtca165392008-07-10 10:17:44 +0000104 <plugins>
Stefan Bodewig75d59c32009-02-12 10:03:44 +0000105 <plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000106 <!-- create the source and binary assemblies -->
107 <artifactId>maven-assembly-plugin</artifactId>
Torsten Curdtca165392008-07-10 10:17:44 +0000108 <configuration>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000109 <descriptors>
110 <descriptor>src/assembly/bin.xml</descriptor>
111 <descriptor>src/assembly/src.xml</descriptor>
112 </descriptors>
113 <tarLongFileMode>gnu</tarLongFileMode>
Torsten Curdtca165392008-07-10 10:17:44 +0000114 </configuration>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000115 </plugin>
116 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000117 </build>
118
119 <reporting>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000120 <plugins>
121 <plugin>
122 <!-- generate the changes report from changes.xml and link to JIRA -->
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-changes-plugin</artifactId>
125 <version>2.0</version>
126 <configuration>
127 <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
128 </configuration>
129 <reportSets>
130 <reportSet>
131 <reports>
132 <report>changes-report</report>
133 </reports>
134 </reportSet>
135 </reportSets>
136 </plugin>
137 <plugin>
138 <!-- generate a code coverage report -->
139 <groupId>org.codehaus.mojo</groupId>
140 <artifactId>cobertura-maven-plugin</artifactId>
141 <version>2.2</version>
142 </plugin>
143 <plugin>
144 <!-- generate the PMD reports -->
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-pmd-plugin</artifactId>
147 <version>2.4</version>
148 <configuration>
149 <minimumTokens>200</minimumTokens>
150 <targetJdk>${maven.compile.source}</targetJdk>
151 <rulesets>
152 <ruleset>/rulesets/basic.xml</ruleset>
153 <ruleset>/rulesets/finalizers.xml</ruleset>
154 <ruleset>/rulesets/imports.xml</ruleset>
155 <ruleset>/rulesets/unusedcode.xml</ruleset>
156 </rulesets>
157 </configuration>
158 </plugin>
159 <!-- 2009-03-23 sgoeschl fix this is currently broken since there is no checkstyle.xml -->
160 <!--
Torsten Curdtca165392008-07-10 10:17:44 +0000161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-checkstyle-plugin</artifactId>
164 <configuration>
165 <configLocation>checkstyle.xml</configLocation>
166 </configuration>
167 </plugin>
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000168 -->
169 </plugins>
Torsten Curdtca165392008-07-10 10:17:44 +0000170 </reporting>
171
Siegfried Goeschlf03f2f92009-03-23 14:52:23 +0000172 <profiles>
173 <profile>
174 <id>rc</id>
175 <distributionManagement>
176 <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
177 <site>
178 <id>apache.website</id>
179 <name>Apache Commons Release Candidate Staging Site</name>
180 <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
181 </site>
182 </distributionManagement>
183 </profile>
184 </profiles>
185
Torsten Curdtca165392008-07-10 10:17:44 +0000186</project>