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.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project name="vaadin-buildhelpers" basedir="." default="publish-local">
  3. <description>
  4. Compiles build helpers used when building other modules.
  5. </description>
  6. <include file="../build.xml" as="vaadin" />
  7. <include file="../common.xml" as="common" />
  8. <property name="module.name" value="vaadin-buildhelpers" />
  9. <property name="module.symbolic" value="com.vaadin.buildhelpers" />
  10. <property name="result.dir" location="result" />
  11. <path id="classpath.compile.custom" />
  12. <target name="jar">
  13. <antcall target="common.jar">
  14. <reference torefid="extra.jar.includes" refid="empty.reference" />
  15. </antcall>
  16. </target>
  17. <target name="publish-local" depends="jar">
  18. <antcall target="common.sources.jar">
  19. <reference torefid="extra.jar.includes" refid="empty.reference" />
  20. </antcall>
  21. <antcall target="common.javadoc.jar" />
  22. <antcall target="common.publish-local" />
  23. </target>
  24. <target name="clean">
  25. <antcall target="common.clean" />
  26. </target>
  27. <target name="checkstyle">
  28. <antcall target="common.checkstyle">
  29. <param name="cs.src" location="src" />
  30. </antcall>
  31. </target>
  32. <target name="tests" depends="checkstyle">
  33. <!--<antcall target="common.tests.run" />-->
  34. <echo>WHAT? No JUnit tests for ${module.name}!</echo>
  35. </target>
  36. </project>