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:
33
pom.xml
33
pom.xml
@@ -26,7 +26,7 @@ under the License.
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-parent</artifactId>
|
<artifactId>commons-parent</artifactId>
|
||||||
<version>26</version>
|
<version>28</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>commons-logging</groupId>
|
<groupId>commons-logging</groupId>
|
||||||
@@ -119,6 +119,10 @@ under the License.
|
|||||||
<id>bstansberry</id>
|
<id>bstansberry</id>
|
||||||
<name>Brian Stansberry</name>
|
<name>Brian Stansberry</name>
|
||||||
</developer>
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>tn</id>
|
||||||
|
<name>Thomas Neidhart</name>
|
||||||
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
<contributors>
|
<contributors>
|
||||||
<contributor>
|
<contributor>
|
||||||
@@ -307,15 +311,29 @@ under the License.
|
|||||||
- that those tests must be run *after* the "package" build phase.
|
- 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
|
- 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
|
- phase. This is done by skipping the execution of the surefire plugin.
|
||||||
- need to be run after the "package" phase.
|
|
||||||
-->
|
-->
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<includes>
|
<skip>true</skip>
|
||||||
<include>**/AvalonLoggerTestCase.java</include>
|
</configuration>
|
||||||
</includes>
|
</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>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
@@ -501,10 +519,11 @@ under the License.
|
|||||||
<maven.compile.source>1.2</maven.compile.source>
|
<maven.compile.source>1.2</maven.compile.source>
|
||||||
<maven.compile.target>1.1</maven.compile.target>
|
<maven.compile.target>1.1</maven.compile.target>
|
||||||
<commons.componentid>logging</commons.componentid>
|
<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.binary.suffix>-bin</commons.binary.suffix>
|
||||||
<commons.jira.id>LOGGING</commons.jira.id>
|
<commons.jira.id>LOGGING</commons.jira.id>
|
||||||
<commons.jira.pid>12310484</commons.jira.pid>
|
<commons.jira.pid>12310484</commons.jira.pid>
|
||||||
<commons.surefire.version>2.12</commons.surefire.version>
|
<commons.surefire.version>2.12</commons.surefire.version>
|
||||||
|
<skipSurefireReport>true</skipSurefireReport>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user