forked from I2P_Developers/i2p.i2p
- s/classpath/javac.classpath/ I'm fairly sure that this must have been added
in error. - add jenkins.cobertura.report target. The jenkins plugin couldn't find the sources, so I'm hoping this helps it out. - add debug lines cobertura needs
This commit is contained in:
14
build.xml
14
build.xml
@@ -1319,6 +1319,20 @@
|
||||
<ant dir="core/java/" target="fulltest" />
|
||||
<ant dir="router/java/" target="fulltest" />
|
||||
</target>
|
||||
<target name="jenkins.cobertura.report" depends="cobertura.report">
|
||||
<!--
|
||||
The jenkins cobertura plugin couldn't find the source files.
|
||||
Let's see if these changes help it out.
|
||||
-->
|
||||
<replaceregexp byline="true" file="reports/core/cobertura/coverage.xml"
|
||||
match='filename="net' replace='filename="core/java/src/net'/>
|
||||
<replaceregexp byline="true" file="reports/core/cobertura/coverage.xml"
|
||||
match="<source>./src" replace='<source>./core/java/src'/>
|
||||
<replaceregexp byline="true" file="reports/router/cobertura/coverage.xml"
|
||||
match='filename="net' replace='filename="router/java/src/net'/>
|
||||
<replaceregexp byline="true" file="reports/router/cobertura/coverage.xml"
|
||||
match="<source>./src" replace="<source>router/java/src"/>
|
||||
</target>
|
||||
<!-- end unit tests -->
|
||||
|
||||
<target name="testscripts" >
|
||||
|
||||
Reference in New Issue
Block a user