Skip to content

Commit

Permalink
Merge pull request #176 from rhwood/patch-1
Browse files Browse the repository at this point in the history
chore: remove unused ant targets
  • Loading branch information
pabender authored Sep 24, 2020
2 parents 4d7094b + 8588f07 commit 932e9dc
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,29 +183,6 @@
</fail>
</target>

<target name="run-travis" depends="compile, javadoc, tests" description="build and run test suite">
<mkdir dir="${testreporttarget}"/>
<junit haltonerror="false" haltonfailure="false" showoutput="yes" printsummary="yes" fork="yes" dir="." timeout="3600000" errorProperty="test.failed" failureProperty="test.failed">
<classpath refid="project.class.path" />
<sysproperty key="java.security.policy" value="lib/security.policy"/>
<sysproperty key="java.library.path" path=".:lib/"/>
<formatter type="xml"/>
<batchtest fork="yes" todir="${testreporttarget}" skipNonTests="yes" >
<fileset dir="${test}">
<include name="**/*Test.java" />
<exclude name="**/PackageTest.java" />
<exclude name="**/AllTest.java" />
<exclude name="**/HeadLessTest.java" />
</fileset>
</batchtest>
</junit>
<fail>
<condition>
<istrue value="${test.failed}" />
</condition>
</fail>
</target>

<target name="run-coverage" depends="compile, tests" description="build and run test suite, generating coverage report.">
<mkdir dir="${testreporttarget}"/>
<jacoco:coverage destfile="jacoco.exec" excludes="org.slf4j.*">
Expand Down Expand Up @@ -389,12 +366,6 @@
manifest="manifest"
compress="true" /> <!-- compress="true" is default -->
</target>

<target name="travis-ci-tests" > <!-- tests used on travis CI -->
<antcall target="compile" />
<antcall target="run-travis" />
<antcall target="javadoc-uml" />
</target>

</project>

Expand Down

0 comments on commit 932e9dc

Please sign in to comment.