Sebastian Bazley | 8391bf8 | 2013-05-13 19:25:52 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Torsten Curdt | 444238f | 2008-07-10 21:36:43 +0000 | [diff] [blame] | 2 | <!-- |
Torsten Curdt | 444238f | 2008-07-10 21:36:43 +0000 | [diff] [blame] | 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. |
Torsten Curdt | 444238f | 2008-07-10 21:36:43 +0000 | [diff] [blame] | 17 | --> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 18 | <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 Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 19 | <modelVersion>4.0.0</modelVersion> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.commons</groupId> |
Stefan Bodewig | 01185cb | 2009-03-20 13:31:11 +0000 | [diff] [blame] | 22 | <artifactId>commons-parent</artifactId> |
Stefan Bodewig | 633f9c9 | 2016-01-15 05:55:43 +0100 | [diff] [blame] | 23 | <version>39</version> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
Sebastian Bazley | 606bd73 | 2010-05-21 15:09:32 +0000 | [diff] [blame] | 26 | <groupId>org.apache.commons</groupId> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 27 | <artifactId>commons-compress</artifactId> |
Stefan Bodewig | 3cbd999 | 2016-04-06 06:17:14 +0200 | [diff] [blame] | 28 | <version>1.12-SNAPSHOT</version> |
Sebastian Bazley | 6eb0360 | 2013-10-21 14:50:42 +0000 | [diff] [blame] | 29 | <name>Apache Commons Compress</name> |
Sebastian Bazley | 80beb0e | 2013-03-22 17:49:27 +0000 | [diff] [blame] | 30 | <url>http://commons.apache.org/proper/commons-compress/</url> |
Sebastian Bazley | ec37762 | 2012-03-31 12:07:04 +0000 | [diff] [blame] | 31 | <!-- The description is not indented to make it look better in the release notes --> |
Sebastian Bazley | 842dfd8 | 2010-04-13 19:25:29 +0000 | [diff] [blame] | 32 | <description> |
Stefan Bodewig | 083e7a4 | 2014-10-05 13:38:23 +0000 | [diff] [blame] | 33 | Apache Commons Compress software defines an API for working with |
Sebastian Bazley | 08bf3f7 | 2015-02-04 17:56:41 +0000 | [diff] [blame] | 34 | compression and archive formats. These include: bzip2, gzip, pack200, |
| 35 | lzma, xz, Snappy, traditional Unix Compress, DEFLATE and ar, cpio, |
| 36 | jar, tar, zip, dump, 7z, arj. |
Sebastian Bazley | 842dfd8 | 2010-04-13 19:25:29 +0000 | [diff] [blame] | 37 | </description> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 38 | |
Sebastian Bazley | bea8d43 | 2010-04-13 19:16:58 +0000 | [diff] [blame] | 39 | <properties> |
ggregory | 35d616f | 2016-04-09 09:02:59 -0700 | [diff] [blame] | 40 | <maven.compiler.source>1.6</maven.compiler.source> |
| 41 | <maven.compiler.target>1.6</maven.compiler.target> |
Sebastian Bazley | bea8d43 | 2010-04-13 19:16:58 +0000 | [diff] [blame] | 42 | <commons.componentid>compress</commons.componentid> |
| 43 | <commons.jira.id>COMPRESS</commons.jira.id> |
| 44 | <commons.jira.pid>12310904</commons.jira.pid> |
| 45 | <!-- configuration bits for cutting a release candidate --> |
Stefan Bodewig | 7ee2199 | 2014-01-11 16:07:00 +0000 | [diff] [blame] | 46 | <commons.release.version>${project.version}</commons.release.version> |
Stefan Bodewig | 68d0c02 | 2011-10-26 03:50:11 +0000 | [diff] [blame] | 47 | <commons.rc.version>RC1</commons.rc.version> |
Stefan Bodewig | e7c50ce | 2016-04-09 18:25:14 +0200 | [diff] [blame^] | 48 | <powermock.version>1.6.4</powermock.version> |
Sebastian Bazley | bea8d43 | 2010-04-13 19:16:58 +0000 | [diff] [blame] | 49 | </properties> |
| 50 | |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 51 | <issueManagement> |
| 52 | <system>jira</system> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 53 | <url>http://issues.apache.org/jira/browse/COMPRESS</url> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 54 | </issueManagement> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 55 | |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
Sebastian Bazley | f18a9f6 | 2015-02-16 00:08:05 +0000 | [diff] [blame] | 60 | <version>4.12</version> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 61 | <scope>test</scope> |
| 62 | </dependency> |
Stefan Bodewig | aa73926 | 2011-11-02 16:13:41 +0000 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.tukaani</groupId> |
| 65 | <artifactId>xz</artifactId> |
Stefan Bodewig | 02006b5 | 2014-03-08 17:17:34 +0000 | [diff] [blame] | 66 | <version>1.5</version> |
Emmanuel Bourg | 61792c9 | 2014-03-19 12:28:16 +0000 | [diff] [blame] | 67 | <optional>true</optional> |
Stefan Bodewig | aa73926 | 2011-11-02 16:13:41 +0000 | [diff] [blame] | 68 | </dependency> |
Stefan Bodewig | e7c50ce | 2016-04-09 18:25:14 +0200 | [diff] [blame^] | 69 | <dependency> |
| 70 | <groupId>org.powermock</groupId> |
| 71 | <artifactId>powermock-module-junit4</artifactId> |
| 72 | <version>${powermock.version}</version> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.powermock</groupId> |
| 77 | <artifactId>powermock-api-mockito</artifactId> |
| 78 | <version>${powermock.version}</version> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 81 | </dependencies> |
| 82 | |
| 83 | <developers> |
| 84 | <developer> |
Torsten Curdt | c06ef18 | 2009-01-07 12:53:42 +0000 | [diff] [blame] | 85 | <name>Torsten Curdt</name> |
| 86 | <id>tcurdt</id> |
| 87 | <email>tcurdt at apache.org</email> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 88 | </developer> |
| 89 | <developer> |
Stefan Bodewig | 743d7c5 | 2009-02-05 11:01:35 +0000 | [diff] [blame] | 90 | <name>Stefan Bodewig</name> |
| 91 | <id>bodewig</id> |
| 92 | <email>bodewig at apache.org</email> |
| 93 | </developer> |
Sebastian Bazley | 93fe95d | 2009-04-02 13:48:38 +0000 | [diff] [blame] | 94 | <developer> |
| 95 | <name>Sebastian Bazley</name> |
| 96 | <id>sebb</id> |
| 97 | <email>sebb at apache.org</email> |
| 98 | </developer> |
Christian Grobmeier | c9affe0 | 2009-04-10 19:36:26 +0000 | [diff] [blame] | 99 | <developer> |
| 100 | <name>Christian Grobmeier</name> |
Stefan Bodewig | ec0dd9b | 2011-11-03 06:33:06 +0000 | [diff] [blame] | 101 | <id>grobmeier</id> |
Christian Grobmeier | c9affe0 | 2009-04-10 19:36:26 +0000 | [diff] [blame] | 102 | <email>grobmeier at apache.org</email> |
| 103 | </developer> |
Julius Davies | 2a2c5fc | 2013-01-08 22:16:17 +0000 | [diff] [blame] | 104 | <developer> |
| 105 | <name>Julius Davies</name> |
| 106 | <id>julius</id> |
| 107 | <email>julius at apache.org</email> |
| 108 | </developer> |
Damjan Jovanovic | b6b1e4f | 2013-05-14 05:01:35 +0000 | [diff] [blame] | 109 | <developer> |
| 110 | <name>Damjan Jovanovic</name> |
| 111 | <id>damjan</id> |
| 112 | <email>damjan at apache.org</email> |
| 113 | </developer> |
Emmanuel Bourg | b7fc931 | 2013-12-19 16:12:24 +0000 | [diff] [blame] | 114 | <developer> |
| 115 | <name>Emmanuel Bourg</name> |
| 116 | <id>ebourg</id> |
| 117 | <email>ebourg at apache.org</email> |
| 118 | </developer> |
Gary D. Gregory | 5237cee | 2014-10-23 15:31:03 +0000 | [diff] [blame] | 119 | <developer> |
| 120 | <name>Gary Gregory</name> |
| 121 | <id>ggregory</id> |
| 122 | <email>ggregory at apache.org</email> |
| 123 | </developer> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 124 | </developers> |
Torsten Curdt | c06ef18 | 2009-01-07 12:53:42 +0000 | [diff] [blame] | 125 | |
| 126 | <contributors> |
| 127 | <contributor> |
Stefan Bodewig | e451ee4 | 2009-02-19 13:36:59 +0000 | [diff] [blame] | 128 | <name>Wolfgang Glas</name> |
| 129 | <email>wolfgang.glas at ev-i.at</email> |
| 130 | </contributor> |
Matthew Jason Benson | a24f831 | 2009-03-24 20:41:45 +0000 | [diff] [blame] | 131 | <contributor> |
| 132 | <name>Christian Kohlschütte</name> |
| 133 | <email>ck@newsclub.de</email> |
| 134 | </contributor> |
Stefan Bodewig | 054452a | 2011-08-15 10:47:04 +0000 | [diff] [blame] | 135 | <contributor> |
| 136 | <name>Bear Giles</name> |
| 137 | <email>bgiles@coyotesong.com</email> |
| 138 | </contributor> |
Stefan Bodewig | 950543f | 2011-10-26 14:39:04 +0000 | [diff] [blame] | 139 | <contributor> |
| 140 | <name>Michael Kuss</name> |
| 141 | <email>mail at michael minus kuss.de</email> |
| 142 | </contributor> |
Stefan Bodewig | e166fa7 | 2011-11-03 06:32:25 +0000 | [diff] [blame] | 143 | <contributor> |
| 144 | <name>Lasse Collin</name> |
| 145 | <email>lasse.collin@tukaani.org</email> |
| 146 | </contributor> |
Stefan Bodewig | 6846564 | 2011-12-05 09:58:04 +0000 | [diff] [blame] | 147 | <contributor> |
| 148 | <name>John Kodis</name> |
| 149 | </contributor> |
Stefan Bodewig | 90fc55e | 2013-11-08 15:44:16 +0000 | [diff] [blame] | 150 | <contributor> |
| 151 | <name>BELUGA BEHR</name> |
| 152 | </contributor> |
Torsten Curdt | c06ef18 | 2009-01-07 12:53:42 +0000 | [diff] [blame] | 153 | </contributors> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 154 | |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 155 | <scm> |
Stefan Bodewig | d85561d | 2015-08-27 21:30:24 +0200 | [diff] [blame] | 156 | <connection>scm:git:http://git-wip-us.apache.org/repos/asf/commons-compress.git</connection> |
| 157 | <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/commons-compress.git</developerConnection> |
| 158 | <url>https://git-wip-us.apache.org/repos/asf?p=commons-compress.git</url> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 159 | </scm> |
| 160 | |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 161 | <build> |
Sebastian Bazley | 74e1dd6 | 2015-02-16 23:19:37 +0000 | [diff] [blame] | 162 | <pluginManagement> |
| 163 | <plugins> |
| 164 | <!-- Override Javadoc config in parent pom to add JCIP tags --> |
| 165 | <plugin> |
| 166 | <groupId>org.apache.maven.plugins</groupId> |
| 167 | <artifactId>maven-javadoc-plugin</artifactId> |
| 168 | <configuration> |
| 169 | <quiet>true</quiet> |
| 170 | <source>${maven.compiler.source}</source> |
| 171 | <encoding>${commons.encoding}</encoding> |
| 172 | <docEncoding>${commons.docEncoding}</docEncoding> |
| 173 | <linksource>true</linksource> |
| 174 | <links> |
| 175 | <link>${commons.javadoc.java.link}</link> |
| 176 | <link>${commons.javadoc.javaee.link}</link> |
| 177 | </links> |
| 178 | <tags> |
| 179 | <tag> |
| 180 | <name>Immutable</name> |
| 181 | <placement>a</placement> |
| 182 | <head>This class is immutable</head> |
| 183 | </tag> |
| 184 | <tag> |
| 185 | <name>NotThreadSafe</name> |
| 186 | <placement>a</placement> |
| 187 | <head>This class is not thread-safe</head> |
| 188 | </tag> |
| 189 | <tag> |
| 190 | <name>ThreadSafe</name> |
| 191 | <placement>a</placement> |
| 192 | <head>This class is thread-safe</head> |
| 193 | </tag> |
| 194 | </tags> |
| 195 | </configuration> |
| 196 | </plugin> |
| 197 | </plugins> |
| 198 | </pluginManagement> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 199 | <plugins> |
Stefan Bodewig | 75d59c3 | 2009-02-12 10:03:44 +0000 | [diff] [blame] | 200 | <plugin> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 201 | <!-- create the source and binary assemblies --> |
| 202 | <artifactId>maven-assembly-plugin</artifactId> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 203 | <configuration> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 204 | <descriptors> |
Christian Grobmeier | 0daad13 | 2012-03-18 18:32:49 +0000 | [diff] [blame] | 205 | <descriptor>src/main/assembly/bin.xml</descriptor> |
| 206 | <descriptor>src/main/assembly/src.xml</descriptor> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 207 | </descriptors> |
| 208 | <tarLongFileMode>gnu</tarLongFileMode> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 209 | </configuration> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 210 | </plugin> |
Sebastian Bazley | 0fc47a9 | 2009-05-11 21:56:15 +0000 | [diff] [blame] | 211 | <plugin> |
Sebastian Bazley | dfc6638 | 2010-05-23 11:53:07 +0000 | [diff] [blame] | 212 | <artifactId>maven-jar-plugin</artifactId> |
| 213 | <configuration> |
| 214 | <archive> |
| 215 | <manifestEntries> |
| 216 | <Main-Class>org.apache.commons.compress.archivers.Lister</Main-Class> |
Stefan Bodewig | 5b494b5 | 2011-07-25 19:21:53 +0000 | [diff] [blame] | 217 | <Extension-Name>org.apache.commons.compress</Extension-Name> |
Sebastian Bazley | dfc6638 | 2010-05-23 11:53:07 +0000 | [diff] [blame] | 218 | </manifestEntries> |
| 219 | </archive> |
| 220 | </configuration> |
| 221 | </plugin> |
Stefan Bodewig | 73603cd | 2012-12-27 18:28:24 +0000 | [diff] [blame] | 222 | <plugin> |
| 223 | <groupId>org.apache.felix</groupId> |
| 224 | <artifactId>maven-bundle-plugin</artifactId> |
| 225 | <configuration> |
| 226 | <instructions> |
| 227 | <Import-Package>org.tukaani.xz;resolution:=optional</Import-Package> |
| 228 | </instructions> |
| 229 | </configuration> |
| 230 | </plugin> |
Stefan Bodewig | 97460b9 | 2013-10-26 05:30:17 +0000 | [diff] [blame] | 231 | <plugin> |
| 232 | <groupId>org.apache.maven.plugins</groupId> |
| 233 | <artifactId>maven-scm-publish-plugin</artifactId> |
| 234 | <configuration> |
| 235 | <ignorePathsToDelete> |
Stefan Bodewig | 6a59b35 | 2013-10-26 14:23:47 +0000 | [diff] [blame] | 236 | <ignorePathToDelete>javadocs</ignorePathToDelete> |
Stefan Bodewig | 97460b9 | 2013-10-26 05:30:17 +0000 | [diff] [blame] | 237 | </ignorePathsToDelete> |
| 238 | </configuration> |
| 239 | </plugin> |
Stefan Bodewig | 43a7d7b | 2014-11-01 12:06:20 +0000 | [diff] [blame] | 240 | <!-- use PMD 5.1.3 because of false positives for "unused private method" --> |
| 241 | <plugin> |
| 242 | <groupId>org.apache.maven.plugins</groupId> |
| 243 | <artifactId>maven-pmd-plugin</artifactId> |
| 244 | <version>3.2</version> |
| 245 | <dependencies> |
| 246 | <dependency> |
| 247 | <groupId>net.sourceforge.pmd</groupId> |
| 248 | <artifactId>pmd</artifactId> |
| 249 | <version>5.1.3</version> |
| 250 | </dependency> |
| 251 | </dependencies> |
| 252 | </plugin> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 253 | </plugins> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 254 | </build> |
| 255 | |
| 256 | <reporting> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 257 | <plugins> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 258 | <plugin> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 259 | <!-- generate a code coverage report --> |
| 260 | <groupId>org.codehaus.mojo</groupId> |
| 261 | <artifactId>cobertura-maven-plugin</artifactId> |
Stefan Bodewig | 8caf1f7 | 2013-12-21 06:46:59 +0000 | [diff] [blame] | 262 | <version>2.6</version> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 263 | </plugin> |
| 264 | <plugin> |
| 265 | <!-- generate the PMD reports --> |
| 266 | <groupId>org.apache.maven.plugins</groupId> |
| 267 | <artifactId>maven-pmd-plugin</artifactId> |
Gary D. Gregory | 764069c | 2014-10-23 15:57:40 +0000 | [diff] [blame] | 268 | <version>3.2</version> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 269 | <configuration> |
| 270 | <minimumTokens>200</minimumTokens> |
Stefan Bodewig | d2391db | 2013-07-02 04:17:30 +0000 | [diff] [blame] | 271 | <targetJdk>${maven.compiler.source}</targetJdk> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 272 | <rulesets> |
Stefan Bodewig | dd6fffb | 2011-07-25 04:58:33 +0000 | [diff] [blame] | 273 | <ruleset>${basedir}/pmd-ruleset.xml</ruleset> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 274 | </rulesets> |
| 275 | </configuration> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 276 | </plugin> |
Stefan Bodewig | 84368f7 | 2011-10-25 12:36:42 +0000 | [diff] [blame] | 277 | <!-- Override Javadoc config in parent pom to add JCIP tags --> |
Sebastian Bazley | fc4fe58 | 2009-05-12 01:00:15 +0000 | [diff] [blame] | 278 | <plugin> |
| 279 | <groupId>org.apache.maven.plugins</groupId> |
| 280 | <artifactId>maven-javadoc-plugin</artifactId> |
| 281 | <configuration> |
Stefan Bodewig | ff9b6fd | 2011-10-19 12:52:09 +0000 | [diff] [blame] | 282 | <quiet>true</quiet> |
Stefan Bodewig | d2391db | 2013-07-02 04:17:30 +0000 | [diff] [blame] | 283 | <source>${maven.compiler.source}</source> |
Sebastian Bazley | fc4fe58 | 2009-05-12 01:00:15 +0000 | [diff] [blame] | 284 | <encoding>${commons.encoding}</encoding> |
| 285 | <docEncoding>${commons.docEncoding}</docEncoding> |
| 286 | <linksource>true</linksource> |
| 287 | <links> |
Stefan Bodewig | ff9b6fd | 2011-10-19 12:52:09 +0000 | [diff] [blame] | 288 | <link>${commons.javadoc.java.link}</link> |
| 289 | <link>${commons.javadoc.javaee.link}</link> |
Sebastian Bazley | fc4fe58 | 2009-05-12 01:00:15 +0000 | [diff] [blame] | 290 | </links> |
Sebastian Bazley | 23dd809 | 2010-05-24 18:25:52 +0000 | [diff] [blame] | 291 | <tags> |
| 292 | <tag> |
| 293 | <name>Immutable</name> |
| 294 | <placement>a</placement> |
| 295 | <head>This class is immutable</head> |
| 296 | </tag> |
| 297 | <tag> |
| 298 | <name>NotThreadSafe</name> |
| 299 | <placement>a</placement> |
| 300 | <head>This class is not thread-safe</head> |
| 301 | </tag> |
| 302 | <tag> |
| 303 | <name>ThreadSafe</name> |
| 304 | <placement>a</placement> |
| 305 | <head>This class is thread-safe</head> |
| 306 | </tag> |
| 307 | </tags> |
Sebastian Bazley | fc4fe58 | 2009-05-12 01:00:15 +0000 | [diff] [blame] | 308 | </configuration> |
| 309 | </plugin> |
Stefan Bodewig | 52b9fcd | 2011-08-07 06:09:43 +0000 | [diff] [blame] | 310 | <plugin> |
| 311 | <groupId>org.codehaus.mojo</groupId> |
Stefan Bodewig | 716757f | 2011-08-07 06:27:48 +0000 | [diff] [blame] | 312 | <artifactId>findbugs-maven-plugin</artifactId> |
Gary D. Gregory | d977e67 | 2015-08-15 23:07:53 +0000 | [diff] [blame] | 313 | <version>3.0.2</version> |
Stefan Bodewig | 716757f | 2011-08-07 06:27:48 +0000 | [diff] [blame] | 314 | <configuration> |
| 315 | <threshold>Normal</threshold> |
| 316 | <effort>Default</effort> |
Stefan Bodewig | 4aea7b2 | 2011-08-07 07:56:19 +0000 | [diff] [blame] | 317 | <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile> |
Stefan Bodewig | 716757f | 2011-08-07 06:27:48 +0000 | [diff] [blame] | 318 | </configuration> |
| 319 | </plugin> |
Stefan Bodewig | ff9b6fd | 2011-10-19 12:52:09 +0000 | [diff] [blame] | 320 | <plugin> |
| 321 | <groupId>org.apache.rat</groupId> |
| 322 | <artifactId>apache-rat-plugin</artifactId> |
| 323 | <version>${commons.rat.version}</version> |
| 324 | <configuration> |
| 325 | <excludes> |
| 326 | <!-- files used during tests --> |
| 327 | <exclude>src/test/resources/**</exclude> |
Sebastian Bazley | bcc42c5 | 2012-03-31 13:22:41 +0000 | [diff] [blame] | 328 | <exclude>.pmd</exclude> |
Stefan Bodewig | 853fa97 | 2013-03-08 05:17:44 +0000 | [diff] [blame] | 329 | <exclude>.gitignore</exclude> |
| 330 | <exclude>.gitattributes</exclude> |
Stefan Bodewig | b72c4f9 | 2014-05-09 08:04:55 +0000 | [diff] [blame] | 331 | <exclude>.projectile</exclude> |
Stefan Bodewig | ff9b6fd | 2011-10-19 12:52:09 +0000 | [diff] [blame] | 332 | </excludes> |
| 333 | </configuration> |
| 334 | </plugin> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 335 | </plugins> |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 336 | </reporting> |
| 337 | |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 338 | <profiles> |
Stefan Bodewig | 8cece72 | 2011-12-05 11:49:03 +0000 | [diff] [blame] | 339 | <!-- Add long running tests as **/*IT.java --> |
Stefan Bodewig | 500d940 | 2011-08-12 04:36:19 +0000 | [diff] [blame] | 340 | <profile> |
Stefan Bodewig | 38f0ca9 | 2011-12-05 10:22:59 +0000 | [diff] [blame] | 341 | <id>run-zipit</id> |
Stefan Bodewig | 500d940 | 2011-08-12 04:36:19 +0000 | [diff] [blame] | 342 | <build> |
| 343 | <plugins> |
| 344 | <plugin> |
Stefan Bodewig | f35bdab | 2011-10-18 15:31:12 +0000 | [diff] [blame] | 345 | <groupId>org.apache.maven.plugins</groupId> |
| 346 | <artifactId>maven-antrun-plugin</artifactId> |
Stefan Bodewig | f35bdab | 2011-10-18 15:31:12 +0000 | [diff] [blame] | 347 | <executions> |
| 348 | <execution> |
| 349 | <phase>process-test-resources</phase> |
| 350 | <configuration> |
| 351 | <target> |
| 352 | <untar src="${basedir}/src/test/resources/zip64support.tar.bz2" |
| 353 | dest="${project.build.testOutputDirectory}" |
| 354 | compression="bzip2"/> |
| 355 | </target> |
| 356 | </configuration> |
| 357 | <goals> |
| 358 | <goal>run</goal> |
| 359 | </goals> |
| 360 | </execution> |
| 361 | </executions> |
| 362 | </plugin> |
| 363 | <plugin> |
Stefan Bodewig | 500d940 | 2011-08-12 04:36:19 +0000 | [diff] [blame] | 364 | <artifactId>maven-surefire-plugin</artifactId> |
| 365 | <configuration> |
| 366 | <includes> |
Stefan Bodewig | 38f0ca9 | 2011-12-05 10:22:59 +0000 | [diff] [blame] | 367 | <include>**/zip/*IT.java</include> |
Stefan Bodewig | 500d940 | 2011-08-12 04:36:19 +0000 | [diff] [blame] | 368 | </includes> |
| 369 | </configuration> |
| 370 | </plugin> |
| 371 | </plugins> |
| 372 | </build> |
| 373 | </profile> |
Stefan Bodewig | 8cece72 | 2011-12-05 11:49:03 +0000 | [diff] [blame] | 374 | <profile> |
| 375 | <id>run-tarit</id> |
| 376 | <build> |
| 377 | <plugins> |
| 378 | <plugin> |
| 379 | <artifactId>maven-surefire-plugin</artifactId> |
| 380 | <configuration> |
| 381 | <includes> |
| 382 | <include>**/tar/*IT.java</include> |
| 383 | </includes> |
| 384 | </configuration> |
| 385 | </plugin> |
| 386 | </plugins> |
| 387 | </build> |
| 388 | </profile> |
Siegfried Goeschl | f03f2f9 | 2009-03-23 14:52:23 +0000 | [diff] [blame] | 389 | </profiles> |
Dennis Lundberg | 4dcba5a | 2009-03-23 23:10:54 +0000 | [diff] [blame] | 390 | |
Torsten Curdt | ca16539 | 2008-07-10 10:17:44 +0000 | [diff] [blame] | 391 | </project> |