mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-05 04:38:10 +08:00
30 lines
898 B
XML
30 lines
898 B
XML
<?xml version="1.0"?>
|
|
<project xmlns:ext="http://haulmont.com/schema/ant"
|
|
default="noop" basedir=".">
|
|
|
|
<property name="project.dir" location="../.."/>
|
|
<property name="root.dir" location="${project.dir}/.."/>
|
|
|
|
<property name="module.name" value="core"/>
|
|
<property name="module.jar" value="cuba-core.jar"/>
|
|
|
|
<import file="${root.dir}/build-inc.xml"/>
|
|
<property file="${root.dir}/build.properties"/>
|
|
|
|
<path id="compile-cp">
|
|
<fileset refid="common-lib-fs"/>
|
|
<fileset refid="jboss-lib-fs"/>
|
|
<fileset dir="${root.dir}/chile/build">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
<path id="test-compile-cp">
|
|
<fileset refid="common-lib-fs"/>
|
|
<fileset refid="jboss-lib-fs"/>
|
|
<fileset dir="${root.dir}/chile/build">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
</project> |