cuba/modules/web-war/build.xml
Konstantin Krivopustov c9bb8617ab ITMill integration
2008-12-04 05:28:29 +00:00

29 lines
901 B
XML

<?xml version="1.0"?>
<project xmlns:ext="http://haulmont.com/schema/ant"
name="cuba-web-war" default="noop" basedir=".">
<property name="project.dir" location="../.."/>
<property name="root.dir" location="${project.dir}/.."/>
<property name="module.name" value="web-war"/>
<property name="module.jar" value="22cuba.war"/>
<import file="${root.dir}/build-inc-mod.xml"/>
<property file="${root.dir}/build.properties"/>
<path id="compile-cp">
<fileset refid="common-lib-fs"/>
<fileset refid="server-lib-fs"/>
<pathelement location="${prod.out.dir}/core"/>
</path>
<path id="test-compile-cp">
<fileset refid="common-lib-fs"/>
<fileset refid="server-lib-fs"/>
</path>
<target name="compile-module"/>
<target name="deploy-module" depends="undeploy-module, base-mod.deploy-module"/>
</project>