Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

build.xml 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <project name="vaadin-client" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant">
  3. <description>
  4. Compiles build helpers used when building other modules.
  5. </description>
  6. <include file="../common.xml" as="common" />
  7. <include file="../build.xml" as="vaadin" />
  8. <include file="../gwt-files.xml" as="gwtfiles" />
  9. <!-- global properties -->
  10. <property name="module.name" value="vaadin-client" />
  11. <property name="result.dir" value="result" />
  12. <path id="classpath.compile.custom">
  13. <!-- Could possibly compile GWT files also here to verify that
  14. a) the same dependencies are used and
  15. b) all dependencies have been declared
  16. -->
  17. <fileset file="${gwt.user.jar}" />
  18. </path>
  19. <path id="classpath.tests.custom" />
  20. <target name="jar">
  21. <antcall target="common.jar">
  22. <reference refid="client.gwt.includes" torefid="extra.jar.includes" />
  23. </antcall>
  24. </target>
  25. <target name="publish-local" depends="jar">
  26. <antcall target="common.sources.jar" />
  27. <antcall target="common.javadoc.jar" />
  28. <antcall target="common.publish-local" />
  29. </target>
  30. <target name="clean">
  31. <antcall target="common.clean" />
  32. </target>
  33. <target name="tests">
  34. <antcall target="common.tests.run" />
  35. </target>
  36. </project>