| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="main" default="default">
- <basename property="project" file="${basedir}" />
- <dirname property="root.dir" file="${basedir}../" />
- <property file="${root.dir}/building/build.properties" />
- <include file="${root.dir}/building/build_common.xml" as="common" />
- <target name="default">
- <antcall target="common.clean" />
- <antcall target="common.compile" />
- <antcall target="common.metamodel" />
- <antcall target="common.compile" />
- <antcall target="common.createEnhancePersistenceXml" />
- <antcall target="common.enhance" />
- <antcall target="common.jar" />
- </target>
- <target name="deployOnLocal" depends="default">
- <copy file="${store.dir}/jars/${project}-${revision}.jar" todir="d:/o2server/store/jars" />
- </target>
- </project>
|