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 934B

123456789101112131415161718192021222324
  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. <import file="nbproject/build-impl.xml"/>
  5. <import file="build-installer.xml"/>
  6. <import file="build-jar.xml"/>
  7. <import file="build-plugins.xml"/>
  8. <import file="build-reports.xml"/>
  9. <import file="build-tests.xml"/>
  10. <import file="build-versioning.xml"/>
  11. <target name="-submodules" if="submodule.update">
  12. <exec executable="bash">
  13. <arg value="updateSubModules.sh"/>
  14. </exec>
  15. </target>
  16. <target name="-pre-init" depends="-submodules"/>
  17. <target name="-post-compile" depends="-write-version, build-plugins, -addpluginlibs"/>
  18. <target name="-post-test-run" depends="-do-test-reports"/>
  19. <target name="-post-jar" depends="-addjarlibs,-update-bundled-plugins"/>
  20. </project>