23 lines
791 B
XML
23 lines
791 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="spring-ldap-person-sample" default="dist">
|
|
|
|
<property file="build.properties" />
|
|
<property file="project.properties" />
|
|
<property file="${common.build.dir}/build.properties" />
|
|
<property file="${common.build.dir}/project.properties" />
|
|
<property file="${user.home}/build.properties" />
|
|
|
|
<property name="build.web" value="true" />
|
|
<property name="project.webapp.name" value="ldap-person" />
|
|
|
|
<import file="${common.build.dir}/common-targets.xml" />
|
|
<import file="${common.build.dir}/tomcat-targets.xml" />
|
|
|
|
<!-- extend common-build with source capability -->
|
|
<target name="build.prepare.make.config.dirs" depends="common-targets.build.prepare.make.config.dirs">
|
|
<mkdir dir="${lib.dir}/source" />
|
|
</target>
|
|
|
|
</project>
|