-
Notifications
You must be signed in to change notification settings - Fork 84
/
build.xml
224 lines (195 loc) · 8.35 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<project name="OpenElis" default="test" basedir=".">
<description>
OpenElis build file. Reason we are not using maven is because the code is not structured according to it.
</description>
<presetdef name="javac">
<javac includeantruntime="false"/>
</presetdef>
<property file="build.properties"/>
<property environment="env"/>
<target name="init">
<tstamp/>
<mkdir dir="${target}"/>
</target>
<path id="lib">
<fileset dir="${web}/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
</path>
<path id="jasper.lib">
<pathelement path="${target}"/>
<fileset dir="${web}/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
</path>
<path id="test.lib">
<fileset dir="${test.src}/lib">
<include name="*.jar"/>
</fileset>
</path>
<path id="build.lib">
<fileset dir="build/lib">
<include name="*.jar"/>
</fileset>
</path>
<taskdef name="propertyMerge" classname="org.jugbb.ant.propertymerge.PropertyMergeTask" classpathref="build.lib"/>
<target name="compass.compile" description="compile sass files">
<exec dir="${web}" executable="compass">
<arg line="compile"/>
</exec>
</target>
<target name="compile" depends="init, java.compile,jasper.compile, compass.compile"
description="compile the source ">
</target>
<target name="java.compile"
description="compile the source ">
<mkdir dir="${target}"/>
<javac srcdir="${src}" destdir="${target}" encoding="iso-8859-1" classpathref="lib" source="1.7" target="1.7" debug="on"/>
<copy todir="${target}">
<fileset dir="${src}" includes="**/*.xml"/>
<fileset dir="${src}" includes="**/*.properties"/>
</copy>
</target>
<taskdef name="jrc" classname="net.sf.jasperreports.ant.JRAntCompileTask">
<classpath refid="build.lib"/>
</taskdef>
<target name="jasper.compile" depends="java.compile">
<jrc
srcdir="${web}/WEB-INF/reports"
destdir="${web}/WEB-INF/reports"
tempdir="${web}/WEB-INF/reports"
keepjava="false"
xmlvalidation="true">
<include name="**/*.jrxml"/>
<classpath refid="jasper.lib"/>
</jrc>
</target>
<target name="dist" depends="clean, compile, migrationScripts"
description="generate the distribution">
<mkdir dir="${dist}/lib"/>
<copy todir="${target}">
<fileset dir="${src}" includes="**/*.properties"/>
</copy>
<copy file="LICENSE" todir="${dist}"/>
<propertyMerge
inputpropertyfile="${target}/MessageResources.properties"
mergepropertyfile="${target}/BahmniMessageResources.properties"
outputpropertyfile="${target}/MessageResources.properties"
native2ascii="true"/>
<war destfile="${dist}/openelis.war">
<classes dir="${target}"/>
<fileset dir="${web}"/>
<fileset file="${dist}/LICENSE"/>
<lib dir="${dist}/lib"/>
</war>
</target>
<target name="migrationScripts">
<zip destfile="OpenElis.zip" basedir="../" includes="OpenElis**/**" excludes="**/.idea/**,*.iml,*.git*,**/dist/*,**/target/*,*.svn*,**/out/**,**/openelis/**,**/src/**,**/logs/**,**/junit/*,**/OpenElis.zip" />
</target>
<target name="build" depends="clean, compile, resetDB, test, report, dist"/>
<target name="devbuild" depends="clean, compile, updateDB, test, report, dist"/>
<target name="useHaitiDB" depends="dropDB, initHaitiDB, updateHaitiDB, updateDB" />
<target name="initHaitiDB">
<chmod file="scripts/initDB.sh" perm="a+x"/>
<exec executable="scripts/initDB.sh">
<arg value="haitiClinical.backup"/>
</exec>
</target>
<target name="updateHaitiDB">
<echo message="Running migration for contexts : Haiti"/>
<exec executable="java" failonerror="true" dir="${liquibase}">
<arg line="-jar -Dfile.encoding=utf-8 lib/liquibase-1.9.5.jar --changeLogFile=./changeLogs.xml --defaultsFile=liquibase.properties --contexts=haiti --url=jdbc:postgresql://localhost:5432/clinlims update"/>
</exec>
</target>
<target name="vagrant-deploy" depends="dist">
<condition property="script_extension" value="sh" else="bat">
<os family="unix" />
</condition>
<echo message="Deploying OpenElis.war to Vagrant Tomcat"/>
<exec executable="${basedir}/scripts/vagrant/vagrant-deploy.${script_extension}" failonerror="true">
<arg line="${basedir} ${dist}/openelis.war"/>
</exec>
</target>
<target name="clean">
<delete dir="${target}"/>
<delete dir="${dist}"/>
<delete dir="${junit.output.dir}"/>
<delete dir="${test.target}"/>
<delete>
<fileset dir="${web}/WEB-INF/reports">
<include name="*.jasper"/>
</fileset>
</delete>
</target>
<target name="setupDB" depends="initDB, updateDB"/>
<target name="initDB">
<chmod file="scripts/initDB.sh" perm="a+x"/>
<exec executable="scripts/initDB.sh">
<arg value="bahmni-base.dump"/>
</exec>
</target>
<target name="dropDB">
<echo message="DROPPING OpenELIS database ......"/>
<sleep seconds="4" description="Waiting for few seconds in case the person does not want to delete the DB."/>
<chmod file="scripts/dropDB.sh" perm="a+x"/>
<exec executable="scripts/dropDB.sh"/>
</target>
<target name="resetDB" depends="dropDB, initDB, updateDB"/>
<target name="updateDB">
<echo message="Running migration for contexts : Bahmni"/>
<exec executable="java" failonerror="true" dir="${liquibase}">
<arg line="-jar -Dfile.encoding=utf-8 lib/liquibase-1.9.5.jar --defaultsFile=liquibase.properties --contexts=bahmni --url=jdbc:postgresql://localhost:5432/clinlims --logLevel=warning update"/>
</exec>
</target>
<target name="test" depends="clean, compile, updateDB" />
<target name="test-only">
<mkdir dir="${junit.output.dir}"/>
<mkdir dir="${test.target}"/>
<javac srcdir="${test.src}" destdir="${test.target}" encoding="iso-8859-1" debug="on">
<classpath>
<dirset dir="${target}"/>
<path refid="test.lib"/>
<path refid="lib"/>
</classpath>
</javac>
<copy todir="${test.target}">
<fileset dir="${test.src}" includes="**/*.json"/>
</copy>
<junit printsummary="yes" haltonerror="false" haltonfailure="false"
showoutput="true" failureproperty="test.failed">
<classpath>
<fileset dir="${liquibase}/lib">
<include name="*.jar"/>
</fileset>
<path refid="test.lib"/>
<path refid="lib"/>
<pathelement location="${src}"/>
<pathelement location="${target}"/>
<pathelement location="${test.target}"/>
</classpath>
<batchtest todir="${junit.output.dir}">
<formatter type="xml"/>
<fileset dir="${test.src}">
<include name="**/*Test*.java"/>
<include name="**/*IT.java"/>
<exclude name="**/*BaseTest.java"/>
<exclude name="**/All*Tests.java"/>
<exclude name="**/openelis/builder/*.java"/>
</fileset>
</batchtest>
</junit>
<antcall target="report"/>
<fail message="Test failure detected, check test results." if="test.failed"/>
</target>
<target name="report">
<mkdir dir="${junit.output.dir}/html"/>
<junitreport todir="${junit.output.dir}">
<fileset dir="${junit.output.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${junit.output.dir}/html"/>
</junitreport>
<property name="absolute.report.path" location="${junit.output.dir}/html"/>
<echo message=">> Junit HTML Report generated in location: '${absolute.report.path}/index.html'"/>
</target>
</project>