build.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="." name="SyncResourcesYed" default="http_fist_input" >
  3. <property name="uuid" value=""/><!-- to be set by executing php by unique uuid identifier -->
  4. <!-- to be set by executing php by unique uuid identifier -->
  5. <property name="hashpassword" value=""/><!-- to be set by executing php by unique uuid identifier -->
  6. <property name="http_fist_input" value="http_fist_input"/>
  7. <property name="http_fist_input.html" value="${http_fist_input}.html"/>
  8. <property name="http_fist_input.xsl" value="${http_fist_input}.xsl"/>
  9. <target name="http_fist_input">
  10. <echo message="${uuid}"/>
  11. <loadfile property="output.html" srcfile="${http_fist_input.html}"/>
  12. <echo message="${output.html}"/>
  13. <echoproperties regex="*."/>
  14. </target>
  15. <target name="first_save_data" depends="do zapisania wynikow od uzytkownika do WFS"></target>
  16. <target name="http_first_output">
  17. <echo message="${uuid}"/>
  18. <echo>http_first_output</echo>
  19. </target>
  20. </project>