| 12345678910111213141516171819202122232425262728293031323334 |
- <?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.war" />
- </target>
- <target name="compileAll">
- <java classname="com.x.base.core.project.CompileAll" fork="true">
- <classpath refid="project.classpath" />
- <arg value="{
- includeAssemble:true,
- includeCore:true,
- includeService:true,
- includeCenter:true,
- excludes:[''],
- rootPath:'${root.dir}'
- }" />
- </java>
- </target>
- <target name="deployOnLocal" depends="default">
- <copy file="${store.dir}/${project}.war" todir="d:/o2server/store" />
- <copy file="${store.dir}/${project}.war" todir="d:/o2server/servers/centerServer/webapps" />
- </target>
- </project>
|