summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2014-03-14 16:10:48 +0000
committerRobert Gemmell <robbie@apache.org>2014-03-14 16:10:48 +0000
commit13bd7b66f5c05d40917dda31adb5dab27d100a0e (patch)
tree67fb429408fd06c095293402989a0eb0b8238491
parent8c2b2e9fa453b2daa81efd7a1b353332c9bf7971 (diff)
downloadqpid-python-13bd7b66f5c05d40917dda31adb5dab27d100a0e.tar.gz
QPID-5048: surefire, site, coverage and jxr config
Patch supplied by Andrew MacBean <andymacbean@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577595 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/pom.xml15
-rw-r--r--qpid/java/qpid-systests-parent/pom.xml22
2 files changed, 37 insertions, 0 deletions
diff --git a/qpid/java/pom.xml b/qpid/java/pom.xml
index 7f2e2d8fda..d5b8921fc4 100644
--- a/qpid/java/pom.xml
+++ b/qpid/java/pom.xml
@@ -38,6 +38,13 @@
<url>http://svn.apache.org/viewvc/qpid/trunk/qpid/java</url>
</scm>
+ <distributionManagement>
+ <site>
+ <id>${project.artifactId}-site</id>
+ <url>${project.baseUri}</url>
+ </site>
+ </distributionManagement>
+
<properties>
<!-- javac source/target properties -->
<java.source>1.6</java.source>
@@ -359,6 +366,14 @@
</reports>
</reportSet>
</reportSets>
+ <configuration>
+ <alwaysGenerateSurefireReport>false</alwaysGenerateSurefireReport>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
diff --git a/qpid/java/qpid-systests-parent/pom.xml b/qpid/java/qpid-systests-parent/pom.xml
index f550aff884..15fc567a77 100644
--- a/qpid/java/qpid-systests-parent/pom.xml
+++ b/qpid/java/qpid-systests-parent/pom.xml
@@ -39,6 +39,8 @@
<test.working.directory>${basedir}/..</test.working.directory>
<test.resource.directory>${basedir}/..</test.resource.directory>
<test.systest.resource.directory>${basedir}</test.systest.resource.directory>
+ <!-- Jacoco skip workaround -->
+ <argLine></argLine>
</properties>
<dependencies>
@@ -204,7 +206,27 @@
</executions>
</plugin>
+
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
</project>