core_template_build.xml 810 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="." name="main" default="default">
  3. <basename property="project" file="${basedir}" />
  4. <dirname property="root.dir" file="${basedir}../" />
  5. <property file="${root.dir}/building/build.properties" />
  6. <include file="${root.dir}/building/build_common.xml" as="common" />
  7. <target name="default">
  8. <antcall target="common.clean" />
  9. <antcall target="common.compile" />
  10. <antcall target="common.metamodel" />
  11. <antcall target="common.compile" />
  12. <antcall target="common.createEnhancePersistenceXml" />
  13. <antcall target="common.enhance" />
  14. <antcall target="common.jar" />
  15. </target>
  16. <target name="deployOnLocal" depends="default">
  17. <copy file="${store.dir}/jars/${project}-${revision}.jar" todir="d:/o2server/store/jars" />
  18. </target>
  19. </project>