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 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0"?>
  2. <project name="vaadin-buildhelpers" basedir="." default="publish-local">
  3. <description>
  4. Compiles build helpers used when building other
  5. modules.
  6. </description>
  7. <include file="../build.xml" as="vaadin" />
  8. <include file="../common.xml" as="common" />
  9. <property name="module.name" value="vaadin-buildhelpers" />
  10. <property name="module.symbolic" value="com.vaadin.buildhelpers" />
  11. <property name="result.dir" location="result" />
  12. <path id="classpath.compile.custom" />
  13. <target name="jar">
  14. <antcall target="common.jar">
  15. <reference torefid="extra.jar.includes" refid="empty.reference" />
  16. </antcall>
  17. </target>
  18. <target name="publish-local" depends="jar">
  19. <antcall target="common.sources.jar">
  20. <reference torefid="extra.jar.includes" refid="empty.reference" />
  21. </antcall>
  22. <antcall target="common.javadoc.jar" />
  23. <antcall target="common.publish-local" />
  24. </target>
  25. <target name="clean">
  26. <antcall target="common.clean" />
  27. </target>
  28. <target name="checkstyle">
  29. <antcall target="common.checkstyle">
  30. <param name="cs.src" location="src" />
  31. </antcall>
  32. </target>
  33. <target name="fetch-release-notes-tickets">
  34. <antcall target="common.exec-buildhelper">
  35. <param name="main.class" value="com.vaadin.buildhelpers.FetchReleaseNotesTickets" />
  36. <param name="output" value="${output}" />
  37. </antcall>
  38. </target>
  39. <target name="fetch-release-notes-authors">
  40. <copy file="src/com/vaadin/buildhelpers/authormap.properties" tofile="result/classes/com/vaadin/buildhelpers/authormap.properties" />
  41. <antcall target="common.exec-buildhelper">
  42. <param name="main.class" value="com.vaadin.buildhelpers.FetchReleaseNotesAuthors" />
  43. <param name="output" value="${output}" />
  44. </antcall>
  45. <delete file="result/classes/com/vaadin/buildhelpers/authormap.properties" />
  46. </target>
  47. <target name="test" depends="checkstyle">
  48. <!--<antcall target="common.test.run" /> -->
  49. <echo>WHAT? No JUnit tests for ${module.name}!</echo>
  50. </target>
  51. </project>