blob: ff76abb451e5f987601d5e7723e4790865074d85 [file] [log] [blame]
Torsten Curdt444238f2008-07-10 21:36:43 +00001<!--
2
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18-->
Torsten Curdtca165392008-07-10 10:17:44 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 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>
22 <parent>
23 <groupId>org.apache.commons</groupId>
24 <artifactId>commons-sandbox-parent</artifactId>
Niall Pembertonf1df5fa2009-02-12 23:42:56 +000025 <version>7</version>
Torsten Curdtca165392008-07-10 10:17:44 +000026 </parent>
27
28 <artifactId>commons-compress</artifactId>
29 <version>1.0-SNAPSHOT</version>
30 <name>Commons Compress (Sandbox)</name>
31 <url>http://commons.apache.org/sandbox/compress/</url>
32 <description>Commons Compress is a component that contains Tar, Zip and BZip2 packages</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>junit</groupId>
37 <artifactId>junit</artifactId>
38 <version>3.8.1</version>
39 <scope>test</scope>
40 </dependency>
41 </dependencies>
42
43 <developers>
44 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000045 <name>Torsten Curdt</name>
46 <id>tcurdt</id>
47 <email>tcurdt at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000048 </developer>
49 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000050 <name>Henri Yandell</name>
51 <id>bayard</id>
52 <email>bayard at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000053 </developer>
Stefan Bodewig743d7c52009-02-05 11:01:35 +000054 <developer>
55 <name>Stefan Bodewig</name>
56 <id>bodewig</id>
57 <email>bodewig at apache.org</email>
58 </developer>
Torsten Curdtca165392008-07-10 10:17:44 +000059 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000060
61 <contributors>
62 <contributor>
63 <name>Christian Grobmeier</name>
64 <email>grobmeier at gmail.com</email>
65 </contributor>
Stefan Bodewige451ee42009-02-19 13:36:59 +000066 <contributor>
67 <name>Wolfgang Glas</name>
68 <email>wolfgang.glas at ev-i.at</email>
69 </contributor>
Torsten Curdtc06ef182009-01-07 12:53:42 +000070 </contributors>
Torsten Curdtca165392008-07-10 10:17:44 +000071
72 <scm>
73 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</connection>
74 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</developerConnection>
75 <url>http://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</url>
76 </scm>
77
78 <distributionManagement>
79 <site>
80 <id>website</id>
81 <name>Apache Website</name>
82 <url>scp://people.apache.org/www/commons.apache.org/sandbox/compress/</url>
83 </site>
84 </distributionManagement>
85
86 <properties>
Niall Pembertonf1df5fa2009-02-12 23:42:56 +000087 <maven.compile.source>1.4</maven.compile.source>
88 <maven.compile.target>1.4</maven.compile.target>
Torsten Curdtca165392008-07-10 10:17:44 +000089 <commons.componentid>compress</commons.componentid>
90 <commons.jira.componentid>12311183</commons.jira.componentid>
91 </properties>
92
93 <build>
Torsten Curdtca165392008-07-10 10:17:44 +000094 <plugins>
Stefan Bodewig75d59c32009-02-12 10:03:44 +000095 <!-- turn off cobertura until we figure out why it's hanging -->
96 <plugin>
Torsten Curdtca165392008-07-10 10:17:44 +000097 <groupId>org.codehaus.mojo</groupId>
98 <artifactId>cobertura-maven-plugin</artifactId>
99 <configuration>
100 <instrumentation>
101 <excludes>
102 <exclude>org/apache/commons/compress/bzip2/**/*.class</exclude>
103 <exclude>org/apache/commons/compress/compressors/bzip2/**/*.class</exclude>
104 </excludes>
105 </instrumentation>
106 </configuration>
107 <executions>
108 <execution>
109 <goals>
110 <goal>clean</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116
117 </build>
118
119 <reporting>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-checkstyle-plugin</artifactId>
124 <configuration>
125 <configLocation>checkstyle.xml</configLocation>
126 </configuration>
127 </plugin>
128 </plugins>
129 </reporting>
130
131</project>