Author: bodewig
Date: Fri Oct 14 13:39:11 2011
New Revision: 1183357
URL: http://svn.apache.org/viewvc?rev=1183357&view=rev
Log:
empty shell for maven project holding archives for inteagrtion tests
Added:
commons/proper/compress/test-resources/
commons/proper/compress/test-resources/pom.xml
- copied, changed from r1183337, commons/proper/compress/trunk/pom.xml
commons/proper/compress/test-resources/src/
commons/proper/compress/test-resources/src/main/
commons/proper/compress/test-resources/src/main/resources/
Copied: commons/proper/compress/test-resources/pom.xml (from r1183337,
commons/proper/compress/trunk/pom.xml)
URL:
http://svn.apache.org/viewvc/commons/proper/compress/test-resources/pom.xml?p2=commons/proper/compress/test-resources/pom.xml&p1=commons/proper/compress/trunk/pom.xml&r1=1183337&r2=1183357&rev=1183357&view=diff
==============================================================================
--- commons/proper/compress/trunk/pom.xml (original)
+++ commons/proper/compress/test-resources/pom.xml Fri Oct 14 13:39:11 2011
@@ -24,282 +24,35 @@
</parent>
<groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>1.3-SNAPSHOT</version>
- <name>Commons Compress</name>
+ <artifactId>commons-compress-test-resources</artifactId>
+ <version>1.0</version>
+ <name>Commons Compress Test Resources</name>
<url>http://commons.apache.org/compress/</url>
<description>
- Apache Commons Compress software defines an API for working with compression
and archive formats.
- These include: bzip2, gzip and ar, cpio, jar, tar, zip.
+ Test archives needed by Commons Compress' integration tests.
</description>
- <properties>
- <maven.compile.source>1.5</maven.compile.source>
- <maven.compile.target>1.5</maven.compile.target>
- <commons.componentid>compress</commons.componentid>
- <commons.jira.id>COMPRESS</commons.jira.id>
- <commons.jira.pid>12310904</commons.jira.pid>
- <!-- configuration bits for cutting a release candidate -->
- <commons.release.version>1.2</commons.release.version>
- <commons.rc.version>RC2</commons.rc.version>
- </properties>
-
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/COMPRESS</url>
</issueManagement>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <developers>
- <developer>
- <name>Torsten Curdt</name>
- <id>tcurdt</id>
- <email>tcurdt at apache.org</email>
- </developer>
- <developer>
- <name>Stefan Bodewig</name>
- <id>bodewig</id>
- <email>bodewig at apache.org</email>
- </developer>
- <developer>
- <name>Sebastian Bazley</name>
- <id>sebb</id>
- <email>sebb at apache.org</email>
- </developer>
- <developer>
- <name>Christian Grobmeier</name>
- <email>grobmeier at apache.org</email>
- </developer>
- </developers>
-
- <contributors>
- <contributor>
- <name>Wolfgang Glas</name>
- <email>wolfgang.glas at ev-i.at</email>
- </contributor>
- <contributor>
- <name>Christian Kohlschütte</name>
- <email>[email protected]</email>
- </contributor>
- <contributor>
- <name>Bear Giles</name>
- <email>[email protected]</email>
- </contributor>
- </contributors>
-
<scm>
-
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection>
-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection>
- <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/test-resources</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/test-resources</developerConnection>
+
<url>http://svn.apache.org/repos/asf/commons/proper/compress/test-resources</url>
</scm>
- <distributionManagement>
- <site>
- <id>website</id>
- <name>Apache Website</name>
- <url>scp://people.apache.org/www/commons.apache.org/compress/</url>
- </site>
- </distributionManagement>
-
<build>
- <plugins>
- <plugin>
- <!-- create the source and binary assemblies -->
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/assembly/bin.xml</descriptor>
- <descriptor>src/assembly/src.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestEntries>
-
<Main-Class>org.apache.commons.compress.archivers.Lister</Main-Class>
- <Extension-Name>org.apache.commons.compress</Extension-Name>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- </plugins>
+ <resources>
+ <resource>
+ <targetPath></targetPath>
+ <filtering>false</filtering>
+ <directory>${basedir}/src/main/resources</directory>
+ <includes>
+ <include>*</include>
+ </includes>
+ </resource>
+ </resources>
</build>
-
- <reporting>
- <plugins>
- <plugin>
- <!-- generate the changes report from changes.xml and link to JIRA -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changes-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <issueLinkTemplatePerSystem>
- <default>%URL%/%ISSUE%</default>
- </issueLinkTemplatePerSystem>
- </configuration>
- <reportSets>
- <reportSet>
- <reports>
- <report>changes-report</report>
- <report>jira-report</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- <plugin>
- <!-- generate a code coverage report -->
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.2</version>
- </plugin>
- <plugin>
- <!-- generate the PMD reports -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <version>2.4</version>
- <configuration>
- <minimumTokens>200</minimumTokens>
- <targetJdk>${maven.compile.source}</targetJdk>
- <rulesets>
- <ruleset>${basedir}/pmd-ruleset.xml</ruleset>
- </rulesets>
- </configuration>
- </plugin>
- <!-- Override Javadoc config in parent pom to add default manifest
entries -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
- </manifest>
- </archive>
- <aggregate>false</aggregate>
- <source>${maven.compile.source}</source>
- <encoding>${commons.encoding}</encoding>
- <docEncoding>${commons.docEncoding}</docEncoding>
- <linksource>true</linksource>
- <links>
- <link>http://download.oracle.com/javase/6/docs/api/</link>
- </links>
- <tags>
- <tag>
- <name>Immutable</name>
- <placement>a</placement>
- <head>This class is immutable</head>
- </tag>
- <tag>
- <name>NotThreadSafe</name>
- <placement>a</placement>
- <head>This class is not thread-safe</head>
- </tag>
- <tag>
- <name>ThreadSafe</name>
- <placement>a</placement>
- <head>This class is thread-safe</head>
- </tag>
- </tags>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>clirr-maven-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <comparisonArtifacts>
- <comparisonArtifact>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>1.2</version>
- </comparisonArtifact>
- </comparisonArtifacts>
- <minSeverity>info</minSeverity>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <threshold>Normal</threshold>
- <effort>Default</effort>
-
<excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
-
- <profiles>
- <profile>
- <id>rc</id>
- <distributionManagement>
- <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
- <site>
- <id>apache.website</id>
- <name>Apache Commons Release Candidate Staging Site</name>
-
<url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
- </site>
- </distributionManagement>
- </profile>
- <profile>
- <id>relnotes</id>
- <!-- Override the built-in announce.vm in order to generate release
notes -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changes-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <template>release-notes.vm</template>
- <templateDirectory>src/changes</templateDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>run-it</id>
- <!-- Add long running tests as **/*IT.java -->
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <includes>
- <include>**/*Test.java</include>
- <include>**/*IT.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
</project>