1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <project name="SIMAN SALOME Platform builder" default="help">
4 <property environment="env" />
5 <property file="build.properties" description="set the build parameters" />
7 <path id="dependencies.classpath">
8 <fileset dir="${tomcat.war.build.dir}">
9 <include name="${splat.lib.dir}/*.*"/>
13 <path id="test.libs.classpath">
14 <pathelement location="${splat.lib.dir}/testng/testng-5.8-jdk15.jar" />
15 <pathelement location="${splat.lib.dir}/spring/spring-test.jar" />
19 <property name="time.simple.pattern" value="dd/MM/yyyy" />
21 <format property="timesimple" pattern="${time.simple.pattern}" />
24 <!-- ================================================= -->
25 <!-- Build-Splat-Jar -->
26 <!-- Create the jar file in the dist directory -->
27 <!-- ================================================= -->
28 <target name="build-splat-jar" description="create jar file in dist directory">
29 <echo message="build splat-${jar.name}.jar"/>
30 <mkdir dir="${splat.dist.dir}" />
31 <jar destfile="${splat.dist.dir}/splat-${jar.name}.jar" >
32 <zipfileset dir="${splat.bin.dir}/">
33 <include name="org/splat/${jar.name}/**" />
36 <attribute name="Built-By" value="${app.author}" />
37 <attribute name="Version" value="${app.version}" />
38 <attribute name="Built-Date" value="${timesimple}" />
43 <!-- ================================================= -->
45 <!-- Create the jar file in the dist directory -->
46 <!-- ================================================= -->
47 <target name="manox-jar" description="create jar file in dist directory">
48 <antcall target="build-splat-jar">
49 <param name="jar.name" value="manox"/>
53 <!-- ================================================= -->
55 <!-- Create the jar file in the dist directory -->
56 <!-- ================================================= -->
57 <target name="kernel-jar" description="create jar file in dist directory">
58 <antcall target="build-splat-jar">
59 <param name="jar.name" value="kernel"/>
63 <!-- ================================================= -->
65 <!-- Create the jar file in the dist directory -->
66 <!-- ================================================= -->
67 <target name="som-jar" description="create jar file in dist directory">
68 <antcall target="build-splat-jar">
69 <param name="jar.name" value="som"/>
73 <!-- ================================================= -->
76 <!-- ================================================= -->
77 <target name="jar" depends="kernel-jar,som-jar,manox-jar" description="compile and create the jar file in dist directory">
80 <!-- ================================================= -->
82 <!-- Compile and create the dist target -->
83 <!-- ================================================= -->
84 <target name="build" depends="compile,jar" description="compile and create the jar file in dist directory">
88 <!-- ================================================= -->
90 <!-- Compile and create the dist target -->
91 <!-- ================================================= -->
92 <target name="rebuild" depends="clean,compile,jar" description="clean, compile and create the jar file in dist directory">
95 <!-- ================================================= -->
97 <!-- Clean the build directory -->
98 <!-- ================================================= -->
99 <target name="clean" description="clean the build directory">
100 <echo message="deleting files in ${splat.dist.dir}" />
101 <delete includeemptydirs="true" failonerror="false">
102 <fileset dir="${splat.dist.dir}" includes="**/*" />
104 <echo message="deleting files in ${splat.build.dir}" />
105 <delete includeemptydirs="true" failonerror="false">
106 <fileset dir="${splat.build.dir}" includes="**/*" />
110 <!-- ============================================================================ -->
111 <!-- help : display the help page -->
112 <!-- ============================================================================ -->
114 <java fork="no" classname="org.apache.tools.ant.Main">
115 <arg line="-projecthelp" />
119 <!-- ================================================= -->
121 <!-- Compile the sources file in build/classes -->
122 <!-- ================================================= -->
123 <target name="compile" description="compile source code">
124 <echo message="compiling SIMAN SALOME Platform" />
125 <echo message="compiler.max.memory : ${compiler.max.memory}" />
126 <echo message="build repository : ${splat.build.dir}" />
127 <echo message="splat.lib.dir : ${splat.lib.dir}" />
129 <!-- <mkdir dir="${splat.build.dir}" />
130 <mkdir dir="${splat.build.dir}/classes" />
131 <javac target="1.5" destdir="${splat.build.dir}/classes" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memoryMaximumSize="${compiler.max.memory}" fork="true" optimize="${compiler.optimize}" deprecation="${compiler.deprecation}">
132 <src path="${splat.src.dir}" />
134 <path refid="dependencies.classpath" />
136 <exclude name="test/**" />
138 <copy todir="${splat.build.dir}/classes">
139 <fileset dir="${splat.src.dir}/conf">
141 <fileset dir="${splat.src.dir}/java">
142 <include name="com/**/*.xsd"/>
145 <mkdir dir="${splat.build.dir}/classes/META-INF" />-->
150 <!-- ================================================= -->
151 <!-- Compile tests -->
152 <!-- Compile the tests sources file in build/tests -->
153 <!-- ================================================= -->
154 <target name="compile-tests" description="compile source code">
155 <echo message="compiling splat tests classes" />
156 <echo message="compiler.max.memory : ${compiler.max.memory}" />
157 <echo message="build repository : ${splat.build.dir}" />
158 <echo message="splat.lib.dir : ${splat.lib.dir}" />
160 <mkdir dir="${splat.build.dir}" />
161 <mkdir dir="${splat.build.dir}/classes" />
162 <javac destdir="${splat.build.dir}/classes" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memoryMaximumSize="${compiler.max.memory}" fork="true" optimize="${compiler.optimize}" deprecation="${compiler.deprecation}">
163 <src path="${splat.dir}/test" />
165 <path refid="dependencies.classpath" />
166 <path refid="test.libs.classpath" />
168 <include name="test/**" />
169 <exclude name="com/**" />
170 <exclude name="org/**" />