1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Author: Kai-Chung Yan <seamlikok@gmail.com>
Last-Update: 2016-07-26
Description: maven-debian-helper fails to ignore modules
Even if you specify --ignore for some POM in libjacoco-java.poms,
maven-debin-helper fails to ignore it. Hence we have to use a patch to do it.
--- a/org.jacoco.build/pom.xml
+++ b/org.jacoco.build/pom.xml
@@ -91,17 +91,6 @@
<!-- Order is important: org.jacoco.agent.rt embeds into org.jacoco.agent and JaCoCo Agent used during tests -->
<module>../org.jacoco.core</module>
<module>../org.jacoco.report</module>
- <module>../org.jacoco.agent.rt</module>
- <module>../org.jacoco.agent</module>
- <module>../org.jacoco.ant</module>
-
- <module>../jacoco-maven-plugin</module>
-
- <module>../org.jacoco.tests</module>
-
- <module>../org.jacoco.examples</module>
- <module>../org.jacoco.doc</module>
- <module>../jacoco</module>
</modules>
<scm>
|