forked from adempiere/adempiere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
133 lines (117 loc) · 5.18 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!-- ============================================= -->
<!-- Extend -->
<!-- ============================================= -->
<!-- $Header: /cvs/adempiere/extend/build.xml,v 1.1 2006/04/21 17:55:19 jjanke Exp $ -->
<project name="extend" default="dist" basedir=".">
<description>
This buildfile is used to build the extend subproject within
the Adempiere project.
</description>
<!-- set global properties for this build -->
<property name="src" value="src"/>
<property name="build.dir" value="build"/>
<property name="dist.dir" value="."/>
<property name="jar.path" value="../lib"/>
<property name="jar.name" value="Extend"/>
<!-- set path to include the necessary jar files for javac -->
<path id="project.class.path">
<pathelement path="${classpath}"/>
<pathelement path="${jar.path}/CCTools.jar"/>
<pathelement path="${jar.path}/jboss.jar"/>
<pathelement path="../base/build"/>
<pathelement path="../org.adempiere.asset/build"/>
<pathelement path="../tools/lib/junit.jar"/>
<pathelement path="../adempiere/Adempiere/lib/Adempiere.jar" />
<fileset dir="../tools/lib/testing/">
<include name="*.jar"/>
</fileset>
</path>
<target name="init" description="initialization target">
<echo message="=========== Build Extend"/>
<!-- create the time stamp -->
<tstamp/>
<!-- create the build directory structure used by compile -->
<mkdir dir="${build.dir}"/>
<!-- check for the distribution directory -->
<available file="${dist.dir}" type="dir" property="dist.dir.exists"/>
</target>
<target name="makedir" depends="init" unless="dist.dir.exists">
<!-- create the distribution directory if not available -->
<mkdir dir="${dist}/${dist.dir}"/>
</target>
<target name="compile" depends="makedir">
<!-- compile the java code from ${src} into ${build.dir} -->
<javac target="1.7" encoding="UTF-8" srcdir="${src}" destdir="${build.dir}" deprecation="on" debug="on">
<classpath refid="project.class.path"/>
</javac>
<!-- copy all image & sound files from src to the build directory -->
<copy todir="${build.dir}">
<fileset dir="${src}">
<include name="**/images/*"/>
<include name="**/*.gif"/>
<include name="**/*.jpg"/>
<include name="**/*.wav"/>
<include name="**/*.htm"/>
<include name="**/*.html"/>
<include name="**/*.properties"/>
<exclude name="**/package.html"/>
</fileset>
</copy>
</target>
<!-- =========================================== -->
<!-- Distribution -->
<!-- =========================================== -->
<target name="dist" depends="compile">
<!-- put everything from ${build.dir} into the ${jar.name}.jar file -->
<jar jarfile="${dist.dir}/${jar.name}.jar" basedir="${build.dir}"/>
</target>
<path id="class.path.test">
<pathelement path="${build.dir}"/>
<pathelement path="${classpath}"/>
<pathelement path="${jar.path}/CCTools.jar"/>
<pathelement path="../base/build"/>
<pathelement path="../tools/lib/junit.jar"/>
<pathelement path="../adempiere/Adempiere/lib/Adempiere.jar" />
<pathelement path="../adempiere/Adempiere/lib/jboss.jar" />
<pathelement path="../adempiere/Adempiere/lib/oracle.jar" />
<pathelement path="../adempiere/Adempiere/lib/postgresql.jar" />
<pathelement path="../adempiere/Adempiere/lib/mysql-connector-java-5.1.13-bin.jar" />
<pathelement path="./Extend.jar" />
<!-- pathelement path="/root/RmiJdbc/dist/lib/RmiJdbc.jar" / -->
</path>
<target name="functionaltest" depends="dist">
<junit>
<classpath refid="class.path.test" />
<formatter type="brief" usefile="false" />
<test name="test.functional.MUserTest" />
<test name="test.functional.MLocationTest" />
<test name="test.functional.MBPartnerTest" />
<test name="test.functional.MBPGroupTest" />
<test name="test.functional.MBPartnerLocationTest" />
<test name="test.functional.MSessionTest" />
<test name="test.functional.PackOutTest" />
<test name="test.functional.MWFNodePlaceHolderTest" />
<test name="test.functional.XMLValidateTest" />
<!-- test name="test.functional.XMLImportStructureTest" / -->
<!-- test name="test.functional.BPMigrationTest" / -->
</junit>
</target>
<target name="performance.test" depends="dist">
<junit printsummary="no" fork="no" maxmemory="1024m" haltonfailure="yes">
<!--jvmarg value="-Djava.compiler=NONE"/-->
<classpath refid="class.path.test" />
<formatter type="brief" usefile="false" />
<test name="test.performance.MProductTest" />
</junit>
</target>
<target name="run" depends="dist">
<java fork="true" classname="test.functional.XMLImportStructureTest">
<classpath refid="class.path.test" />
</java>
</target>
<target name="clean">
<!-- Delete the ${build.dir} directory trees -->
<delete dir="${build.dir}"/>
<delete file="${dist.dir}/${jar.name}.jar" failonerror="false"/>
</target>
</project>