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

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project name="DMDirc-Utils" default="default" basedir=".">
  3. <description>Builds, tests, and runs the project.</description>
  4. <import file="nbproject/build-impl.xml"/>
  5. <import file="build-ivy.xml"/>
  6. <import file="build-versioning.xml"/>
  7. <import file="build-publish.xml"/>
  8. <property name="git.dir" value=".git"/>
  9. <target name="-pre-init" depends="-init-dependencies"/>
  10. <target name="-post-compile" depends="-add-version"/>
  11. <target name="-post-jar">
  12. <delete file="${manifest.file}"/>
  13. </target>
  14. <target name="-post-test-run">
  15. <delete file="${manifest.file}"/>
  16. </target>
  17. <target name="publish-nightlies" depends="clean, jar, -publish-nightlies" />
  18. <target name="publish-release" depends="clean, jar, -publish-release" />
  19. </project>