I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 0bfd747c authored by str4d's avatar str4d
Browse files

Exclude from router cobertura anything that isn't net.i2p.*

parent 1939aaca
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,12 @@ ...@@ -172,7 +172,12 @@
<cobertura-instrument todir="./build/obj_cobertura"> <cobertura-instrument todir="./build/obj_cobertura">
<fileset dir="./build/obj"> <fileset dir="./build/obj">
<include name="**/*.class"/> <include name="**/*.class"/>
<!-- exclude Test classes -->
<exclude name="**/*Test.class" /> <exclude name="**/*Test.class" />
<!-- exclude anything not in net.i2p.* -->
<exclude name="org/cybergarage/**/*.class" />
<exclude name="org/freenetproject/**/*.class" />
<exclude name="org/xlattice/**/*.class" />
</fileset> </fileset>
</cobertura-instrument> </cobertura-instrument>
</target> </target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment