blob: add720cd6c056eb7614643dfe6173d40b6e7e6e9 [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>
25 <version>4</version>
26 </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>
54 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000055
56 <contributors>
57 <contributor>
58 <name>Christian Grobmeier</name>
59 <email>grobmeier at gmail.com</email>
60 </contributor>
61 </contributors>
Torsten Curdtca165392008-07-10 10:17:44 +000062
63 <scm>
64 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</connection>
65 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</developerConnection>
66 <url>http://svn.apache.org/repos/asf/commons/sandbox/compress/trunk</url>
67 </scm>
68
69 <distributionManagement>
70 <site>
71 <id>website</id>
72 <name>Apache Website</name>
73 <url>scp://people.apache.org/www/commons.apache.org/sandbox/compress/</url>
74 </site>
75 </distributionManagement>
76
77 <properties>
78 <commons.componentid>compress</commons.componentid>
79 <commons.jira.componentid>12311183</commons.jira.componentid>
80 </properties>
81
82 <build>
Torsten Curdtca165392008-07-10 10:17:44 +000083 <!-- turn off cobertura until we figure out why it's hanging -->
84 <plugins>
85 <plugin>
86 <groupId>org.codehaus.mojo</groupId>
87 <artifactId>cobertura-maven-plugin</artifactId>
88 <configuration>
89 <instrumentation>
90 <excludes>
91 <exclude>org/apache/commons/compress/bzip2/**/*.class</exclude>
92 <exclude>org/apache/commons/compress/compressors/bzip2/**/*.class</exclude>
93 </excludes>
94 </instrumentation>
95 </configuration>
96 <executions>
97 <execution>
98 <goals>
99 <goal>clean</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105
106 </build>
107
108 <reporting>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-checkstyle-plugin</artifactId>
113 <configuration>
114 <configLocation>checkstyle.xml</configLocation>
115 </configuration>
116 </plugin>
117 </plugins>
118 </reporting>
119
120</project>