build.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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" description="do zapisania wynikow od uzytkownika do WFS">
  16. </target>
  17. <target name="http_first_output">
  18. <echo message="${uuid}"/>
  19. <echo>http_first_output</echo>
  20. </target>
  21. </project>