blob: 681cdc186fa2323dbab34587a02060e782bb6f7f [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-->
Torsten Curdtca165392008-07-10 10:17:44 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.apache.commons</groupId>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000025 <artifactId>commons-parent</artifactId>
26 <version>11</version>
Torsten Curdtca165392008-07-10 10:17:44 +000027 </parent>
28
29 <artifactId>commons-compress</artifactId>
30 <version>1.0-SNAPSHOT</version>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000031 <name>Commons Compress</name>
Torsten Curdtca165392008-07-10 10:17:44 +000032 <url>http://commons.apache.org/sandbox/compress/</url>
33 <description>Commons Compress is a component that contains Tar, Zip and BZip2 packages</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>3.8.1</version>
40 <scope>test</scope>
41 </dependency>
42 </dependencies>
43
44 <developers>
45 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000046 <name>Torsten Curdt</name>
47 <id>tcurdt</id>
48 <email>tcurdt at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000049 </developer>
50 <developer>
Torsten Curdtc06ef182009-01-07 12:53:42 +000051 <name>Henri Yandell</name>
52 <id>bayard</id>
53 <email>bayard at apache.org</email>
Torsten Curdtca165392008-07-10 10:17:44 +000054 </developer>
Stefan Bodewig743d7c52009-02-05 11:01:35 +000055 <developer>
56 <name>Stefan Bodewig</name>
57 <id>bodewig</id>
58 <email>bodewig at apache.org</email>
59 </developer>
Torsten Curdtca165392008-07-10 10:17:44 +000060 </developers>
Torsten Curdtc06ef182009-01-07 12:53:42 +000061
62 <contributors>
63 <contributor>
64 <name>Christian Grobmeier</name>
65 <email>grobmeier at gmail.com</email>
66 </contributor>
Stefan Bodewige451ee42009-02-19 13:36:59 +000067 <contributor>
68 <name>Wolfgang Glas</name>
69 <email>wolfgang.glas at ev-i.at</email>
70 </contributor>
Torsten Curdtc06ef182009-01-07 12:53:42 +000071 </contributors>
Torsten Curdtca165392008-07-10 10:17:44 +000072
73 <scm>
Stefan Bodewig01185cb2009-03-20 13:31:11 +000074 <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
75 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection>
76 <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url>
Torsten Curdtca165392008-07-10 10:17:44 +000077 </scm>
78
79 <distributionManagement>
80 <site>
81 <id>website</id>
82 <name>Apache Website</name>
83 <url>scp://people.apache.org/www/commons.apache.org/sandbox/compress/</url>
84 </site>
85 </distributionManagement>
86
87 <properties>
Sebastian Bazley5f4310f2009-03-06 13:52:00 +000088 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
89 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Niall Pembertonf1df5fa2009-02-12 23:42:56 +000090 <maven.compile.source>1.4</maven.compile.source>
91 <maven.compile.target>1.4</maven.compile.target>
Torsten Curdtca165392008-07-10 10:17:44 +000092 <commons.componentid>compress</commons.componentid>
93 <commons.jira.componentid>12311183</commons.jira.componentid>
94 </properties>
95
96 <build>
Torsten Curdtca165392008-07-10 10:17:44 +000097 <plugins>
Stefan Bodewig75d59c32009-02-12 10:03:44 +000098 <!-- turn off cobertura until we figure out why it's hanging -->
99 <plugin>
Torsten Curdtca165392008-07-10 10:17:44 +0000100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>cobertura-maven-plugin</artifactId>
102 <configuration>
103 <instrumentation>
104 <excludes>
105 <exclude>org/apache/commons/compress/bzip2/**/*.class</exclude>
106 <exclude>org/apache/commons/compress/compressors/bzip2/**/*.class</exclude>
107 </excludes>
108 </instrumentation>
109 </configuration>
110 <executions>
111 <execution>
112 <goals>
113 <goal>clean</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119
120 </build>
121
122 <reporting>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-checkstyle-plugin</artifactId>
127 <configuration>
128 <configLocation>checkstyle.xml</configLocation>
129 </configuration>
130 </plugin>
131 </plugins>
132 </reporting>
133
134</project>