1
0

Update parent to 28, include myself, disable surefire/cobertura execution -> failsafe is used instead.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1448254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart
2013-02-20 15:43:11 +00:00
parent e7e8e9fdba
commit 010b81bd06

33
pom.xml
View File

@@ -26,7 +26,7 @@ under the License.
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>26</version>
<version>28</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-logging</groupId>
@@ -119,6 +119,10 @@ under the License.
<id>bstansberry</id>
<name>Brian Stansberry</name>
</developer>
<developer>
<id>tn</id>
<name>Thomas Neidhart</name>
</developer>
</developers>
<contributors>
<contributor>
@@ -307,15 +311,29 @@ under the License.
- that those tests must be run *after* the "package" build phase.
-
- In order to not mess with the Ant build we "disable" the normal test
- phase. This is done by only running a single test, one that does not
- need to be run after the "package" phase.
- phase. This is done by skipping the execution of the surefire plugin.
-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/AvalonLoggerTestCase.java</include>
</includes>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<!--
- Many of JCL's tests use tricky techniques to place the generated
- JCL jarfiles on the classpath in various configurations. This means
- that those tests must be run *after* the "package" build phase.
-
- Disable cobertura report generation as this does not work correctly
- with integration-tests and the normal unit tests are disabled too.
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${commons.cobertura.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
@@ -501,10 +519,11 @@ under the License.
<maven.compile.source>1.2</maven.compile.source>
<maven.compile.target>1.1</maven.compile.target>
<commons.componentid>logging</commons.componentid>
<commons.release.version>1.1.1</commons.release.version>
<commons.release.version>1.1.2</commons.release.version>
<commons.binary.suffix>-bin</commons.binary.suffix>
<commons.jira.id>LOGGING</commons.jira.id>
<commons.jira.pid>12310484</commons.jira.pid>
<commons.surefire.version>2.12</commons.surefire.version>
<skipSurefireReport>true</skipSurefireReport>
</properties>
</project>