You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.xml 1.0KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project name="DMDirc" default="default" basedir=".">
  3. <description>Builds, tests, and runs the project DMDirc.</description>
  4. <available file="/bin/bash" property="has.bash"/>
  5. <import file="nbproject/build-impl.xml"/>
  6. <import file="build-installer.xml"/>
  7. <import file="build-jar.xml"/>
  8. <import file="build-plugins.xml"/>
  9. <import file="build-reports.xml"/>
  10. <import file="build-tests.xml"/>
  11. <import file="build-versioning.xml"/>
  12. <target name="-submodules">
  13. <exec executable="git">
  14. <arg value="submodule"/>
  15. <arg value="init"/>
  16. </exec>
  17. <exec executable="git">
  18. <arg value="submodule"/>
  19. <arg value="update"/>
  20. </exec>
  21. </target>
  22. <target name="-pre-init" depends="-submodules"/>
  23. <target name="-post-compile" depends="-write-version, build-plugins, -addpluginlibs"/>
  24. <target name="-post-test-run" depends="-do-test-reports"/>
  25. <target name="-post-jar" depends="-addjarlibs"/>
  26. </project>