Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334
  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="result.dir" location="result" />
  10. <path id="classpath.compile.custom" />
  11. <target name="jar">
  12. <antcall target="common.jar">
  13. <reference torefid="extra.jar.includes" refid="empty.reference" />
  14. </antcall>
  15. </target>
  16. <target name="publish-local" depends="jar">
  17. <antcall target="common.sources.jar" />
  18. <antcall target="common.javadoc.jar" />
  19. <antcall target="common.publish-local" />
  20. </target>
  21. <target name="clean">
  22. <antcall target="common.clean" />
  23. </target>
  24. <target name="tests">
  25. <!--<antcall target="common.tests.run" />-->
  26. <echo>WHAT? No JUnit tests for ${module.name}!</echo>
  27. </target>
  28. </project>