build.xml 677 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="." name="SyncResourcesYed" default="http_fist_input" >
  3. <property name="uuid" value="${uuid}"/>
  4. <property name="http_fist_input" value="http_fist_input"/>
  5. <property name="http_fist_input.html" value="${http_fist_input}.html"/>
  6. <property name="http_fist_input.xsl" value="${http_fist_input}.xsl"/>
  7. <target name="http_fist_input">
  8. <!--<echo message="${uuid}"/>-->
  9. <echo file="${http_fist_input.html}"/>
  10. </target>
  11. <target name="http_first_output">
  12. <echo message="${uuid}"/>
  13. <echo>http_first_output</echo>
  14. </target>
  15. </project>