40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="common">
|
|
|
|
<property name="ccm.tools.xsl.dir" value="${ccm.project.dir}/tools-ng/common/xsl" />
|
|
|
|
<!-- several java programs needed for processing, esp. xml files-->
|
|
<property name="ccm.tools.lib.dir" value="${ccm.project.dir}/tools-ng/common/lib" />
|
|
<path id="ccm.tools.classpath">
|
|
<fileset dir="${ccm.tools.lib.dir}" includes="*.jar" />
|
|
</path>
|
|
|
|
|
|
<!-- Read configuration files. First from project dir, then add
|
|
requirred defaults from ecdc directory -->
|
|
<property file="${ccm.project.dir}/local.runtime.properties" />
|
|
<property file="${ccm.ecdc.conf.dir}/runtime.properties" />
|
|
|
|
<property file="${ccm.project.dir}/local.build.properties" />
|
|
<property file="${ccm.ecdc.conf.dir}/build.properties" />
|
|
|
|
<property file="${ccm.project.dir}/local.ccm.properties" />
|
|
<property file="${ccm.ecdc.conf.dir}/ccm.properties" />
|
|
|
|
|
|
<path id="ccm.classpath">
|
|
<path refid="ccm.tools.classpath"/>
|
|
<pathelement path="${webapp.dist.dir}/WEB-INF/classes"/>
|
|
<fileset dir="${webapp.dist.dir}/WEB-INF/lib" includes="*.jar" />
|
|
</path>
|
|
|
|
<condition property="correct.ant.version">
|
|
<antversion atleast="1.7.0" />
|
|
</condition>
|
|
|
|
<!-- http://antelope.tigris.org/ -->
|
|
<taskdef classpathref="ccm.tools.classpath" resource="ise/antelope/tasks/antlib.xml" />
|
|
|
|
</project>
|