Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- You may freely edit this file. See commented blocks below for -->
  3. <!-- some examples of how to customize the build. -->
  4. <!-- (If you delete it and reopen the project it will be recreated.) -->
  5. <project name="DMDirc" default="default" basedir=".">
  6. <taskdef resource="clovertasks"/>
  7. <description>Builds, tests, and runs the project DMDirc.</description>
  8. <import file="nbproject/build-impl.xml"/>
  9. <property file="nbproject/project.properties"/>
  10. <property name="test.reports" value="./junitreports" />
  11. <!-- <target name="with.clover">
  12. <clover-setup initString="mycoverage.db" source="1.5"/>
  13. </target>
  14. <target name="test-html" depends="with.clover,compile-test,test">
  15. <classpath>
  16. <pathelement path="${ant.home}/lib/clover.jar"/>
  17. </classpath>
  18. </target>
  19. <target name="clover.html" depends="with.clover">
  20. <clover-report>
  21. <current outfile="clover_html">
  22. <format type="html"/>
  23. </current>
  24. </clover-report>
  25. </target> -->
  26. <target name="test-html" depends="compile-test,test"/>
  27. <target name="-post-test-run">
  28. <!-- <target name="test-html" depends="compile-test,test"> -->
  29. <junitreport todir="${test.reports}">
  30. <fileset dir="${build.test.results.dir}">
  31. <include name="TEST-*.xml" />
  32. </fileset>
  33. <report todir="${test.reports}" />
  34. </junitreport>
  35. <!-- <fail if="tests.failed">Some tests failed; see details above.</fail> -->
  36. </target>
  37. </project>