1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <project name="SIMAN SALOME Platform builder" default="build">
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: Create the splat jar file -->
26 <!-- ================================================= -->
27 <target name="build-splat-jar" description="create jar file in dist directory">
28 <echo message="build splat-${jar.name}.jar"/>
29 <mkdir dir="${splat.dist.dir}" />
30 <jar destfile="${splat.dist.dir}/splat-${jar.name}.jar" >
31 <zipfileset dir="${splat.bin.dir}/">
32 <include name="org/splat/${jar.name}/**" />
35 <attribute name="Built-By" value="${app.author}" />
36 <attribute name="Version" value="${app.version}" />
37 <attribute name="Built-Date" value="${timesimple}" />
42 <!-- ================================================= -->
43 <!-- manox-jar: Create the manox jar file -->
44 <!-- ================================================= -->
45 <target name="manox-jar" description="create jar file in dist directory">
46 <antcall target="build-splat-jar">
47 <param name="jar.name" value="manox"/>
51 <!-- ================================================= -->
52 <!-- kernel-jar: Create the kernel jar file -->
53 <!-- ================================================= -->
54 <target name="kernel-jar" description="create jar file in dist directory">
55 <antcall target="build-splat-jar">
56 <param name="jar.name" value="kernel"/>
60 <!-- ================================================= -->
61 <!-- som-jar: Create the som jar file -->
62 <!-- ================================================= -->
63 <target name="som-jar" description="create jar file in dist directory">
64 <antcall target="build-splat-jar">
65 <param name="jar.name" value="som"/>
69 <!-- ================================================= -->
70 <!-- jar: Build jars -->
71 <!-- ================================================= -->
72 <target name="jar" depends="kernel-jar,som-jar,manox-jar" description="compile and create the jar file in dist directory">
75 <!-- ================================================= -->
76 <!-- build: Compile and create the dist target -->
77 <!-- ================================================= -->
78 <target name="build" depends="compile,jar" description="compile and create the jar file in dist directory">
82 <!-- ================================================= -->
83 <!-- rebuild: Compile and create the dist target -->
84 <!-- ================================================= -->
85 <target name="rebuild" depends="clean,compile,jar" description="clean, compile and create the jar file in dist directory">
88 <!-- ================================================= -->
89 <!-- clean: Clean the dist directory -->
90 <!-- ================================================= -->
91 <target name="clean" description="clean the build directory">
92 <echo message="deleting files in ${splat.dist.dir}" />
93 <delete includeemptydirs="true" failonerror="false">
94 <fileset dir="${splat.dist.dir}" includes="**/*" />
98 <!-- ============================================================================ -->
99 <!-- help : display the help page -->
100 <!-- ============================================================================ -->
102 <java fork="no" classname="org.apache.tools.ant.Main">
103 <arg line="-projecthelp" />
107 <!-- ================================================= -->
108 <!-- compile: Compile the sources files -->
109 <!-- ================================================= -->
110 <target name="compile" description="compile source code">
111 <echo message="compiling SIMAN SALOME Platform" />
112 <echo message="compiler.max.memory : ${compiler.max.memory}" />
113 <echo message="build repository : ${splat.build.dir}" />
114 <echo message="splat.lib.dir : ${splat.lib.dir}" />
116 <!-- <mkdir dir="${splat.build.dir}" />
117 <mkdir dir="${splat.build.dir}/classes" />
118 <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}">
119 <src path="${splat.src.dir}" />
121 <path refid="dependencies.classpath" />
123 <exclude name="test/**" />
125 <copy todir="${splat.build.dir}/classes">
126 <fileset dir="${splat.src.dir}/conf">
128 <fileset dir="${splat.src.dir}/java">
129 <include name="com/**/*.xsd"/>
132 <mkdir dir="${splat.build.dir}/classes/META-INF" />-->
137 <!-- ================================================= -->
138 <!-- Compile tests -->
139 <!-- Compile the tests sources file in build/tests -->
140 <!-- ================================================= -->
141 <target name="compile-tests" description="compile source code">
142 <echo message="compiling splat tests classes" />
143 <echo message="compiler.max.memory : ${compiler.max.memory}" />
144 <echo message="build repository : ${splat.build.dir}" />
145 <echo message="splat.lib.dir : ${splat.lib.dir}" />
147 <mkdir dir="${splat.build.dir}" />
148 <mkdir dir="${splat.build.dir}/classes" />
149 <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}">
150 <src path="${splat.dir}/test" />
152 <path refid="dependencies.classpath" />
153 <path refid="test.libs.classpath" />
155 <include name="test/**" />
156 <exclude name="com/**" />
157 <exclude name="org/**" />