
Jenkins needs some kind of report from the JUnit tests in order to tell whether the tests succeeded or not. android-junit-report is a library to do exactly that. With this setup, Jenkins should now successfully understand the status of the JUnit tests, where before it just ran them and ignored the results
13 lines
369 B
XML
13 lines
369 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="custom_rules">
|
|
|
|
<target name="javadoc" description="Generate Javadocs">
|
|
<javadoc sourcepath="${source.dir}"
|
|
destdir="${out.dir}/javadoc"
|
|
packagenames="org.fdroid.*"
|
|
windowtitle="${ant.project.name}"
|
|
doctitle="${ant.project.name}" />
|
|
</target>
|
|
|
|
</project>
|