-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.xml
34 lines (31 loc) · 1.57 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<project name="eoi-agents" default="dist" xmlns:ivy="antlib:org.apache.ivy.ant" basedir=".">
<!-- import properties -->
<property file="build.properties" />
<!-- ivy properties & settings -->
<property file="${settings.dir}/ivysettings.properties" />
<ivy:settings file="${settings.dir}/ivysettings.xml" />
<!-- ooici properties -->
<property file="${settings.dir}/ooici.properties" />
<!-- import the ooici_build.xml -->
<import file="${settings.dir}/ooici-build.xml" />
<!--
Targets that can be overridden:
- pre-compile: Called before javac compilation - empty by default, override in build.xml to use
- post-compile: Called after javac compilation - empty by default, override in build.xml to use
- pre-dist: Called before all actions in the dist target - empty by default, override in build.xml to use
- post-dist: Called after all actions in the dist target - empty by default, override in build.xml to use
- clean-more: Called at the end of 'clean' - empty by default, override in build.xml to use
-->
<!-- =================================
target: post-compile
================================= -->
<target name="post-compile" >
<!-- copy the resources directory -->
<mkdir dir="${build.dir}/resources" />
<copy todir="${build.dir}/resources">
<fileset dir="${src.dir}/resources"/>
</copy>
<!-- copy the log4j.properties file -->
<copy file="${src.dir}/log4j.properties" todir="${build.dir}" />
</target>
</project>