Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.xml 935B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0"?>
  2. <project name="vaadin-client-compiler" 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-compiler" />
  11. <property name="result.dir" value="result" />
  12. <path id="classpath.compile.custom">
  13. <fileset file="${gwt.dev.jar}"/>
  14. </path>
  15. <target name="jar">
  16. <antcall target="common.jar">
  17. <reference refid="client-compiler.gwt.includes" torefid="extra.jar.includes" />
  18. </antcall>
  19. </target>
  20. <target name="publish-local" depends="jar">
  21. <antcall target="common.publish-local" />
  22. </target>
  23. <target name="clean">
  24. <antcall target="common.clean" />
  25. </target>
  26. </project>