-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
160 lines (133 loc) · 5.56 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
<?xml version="1.0"?>
<!-- ********************************************************* -->
<!-- ** DOTS Reports ** -->
<!-- ** ** -->
<!-- ** @author Interactive Research and Development ** -->
<!-- ** @version 1.0 ** -->
<!-- ********************************************************* -->
<project name="dotsreports" default="package-module">
<property environment="env"/>
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="../openmrs-1.6.x/lib/ant-contrib/ant-contrib-1.0b2.jar"/>
<available file="${env.OPENMRS_BUILD_PROPERTIES_FILE}" property="env.file.exists"/>
<available file="${user.home}/Application Data/OpenMRS/OPENMRS-build.properties" property="appdata.file.exists"/>
<available file="${user.home}/.OpenMRS/OPENMRS-build.properties" property="unix.file.exists"/>
<if>
<equals arg1="${env.file.exists}" arg2="true" />
<then><property file="${env.OPENMRS_BUILD_PROPERTIES_FILE}"/></then>
<elseif>
<equals arg1="${appdata.file.exists}" arg2="true" />
<then><property file="${user.home}/Application Data/OpenMRS/OPENMRS-build.properties"/></then>
</elseif>
<elseif>
<equals arg1="${unix.file.exists}" arg2="true" />
<then><property file="${user.home}/.OpenMRS/OPENMRS-build.properties"/></then>
</elseif>
<else><echo message="WARNING: No build properties found"/></else>
</if>
<!-- *********************************************************** -->
<!-- ** TARGETS ** -->
<!-- *********************************************************** -->
<target name="init" description="initialization">
<xmlcatalog id="common-dtds">
<dtd
publicId="-//OpenMRS//DTD OpenMRS Config 1.0//EN"
location="lib-common/config-1.0.dtd"/>
</xmlcatalog>
<xmlproperty file="metadata/config.xml" >
<xmlcatalog refid="common-dtds"/>
</xmlproperty>
<xmlproperty file="metadata/config.xml" />
<filterset id="variables.to.replace">
<filter token="MODULE_ID" value="${module.id}" />
<filter token="MODULE_NAME" value="${module.name}" />
<filter token="MODULE_VERSION" value="${module.version}" />
<filter token="MODULE_PACKAGE" value="${module.package}" />
</filterset>
<path id="classpath">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
<fileset dir="lib-common">
<include name="**/*.jar"/>
</fileset>
<fileset dir="../openmrs-1.6.x/lib">
<include name="**/*.jar"/>
</fileset>
<fileset dir="../openmrs-1.6.x/dist">
<include name="**/*.jar"/>
</fileset>
</path>
</target>
<target name="clean" description="Delete build and dist directories">
<delete dir="dist" />
<delete dir="build" />
</target>
<target name="compile-module" depends="init, clean" description="Compiles the module">
<mkdir dir="build" />
<!-- Copy other source data to the build folder -->
<copy todir="build">
<fileset dir="src/" excludes="**/*.java" />
</copy>
<copy todir="build">
<fileset dir="web/module/resources" includes="**/*.xml" />
</copy>
<!-- Compile module java files -->
<javac destdir="build" classpathref="classpath" debug="true" debuglevel="lines,source,vars">
<compilerarg line="-g" />
<compilerarg line="-target 1.5" />
<src path="src/" />
<include name="**/*.java" />
</javac>
<!-- Compile module web java files -->
<javac destdir="build" classpathref="classpath" debug="true" debuglevel="lines,source,vars">
<compilerarg line="-g" />
<compilerarg line="-target 1.5" />
<src path="web/src/" />
<include name="**/*.java" />
</javac>
</target>
<target name="package-module" depends="compile-module" description="Packages module into jar file">
<mkdir dir="dist" />
<!-- Copy module metadata -->
<copy todir="build/">
<fileset dir="metadata/" includes="**/*" excludes="messages*.properties" />
<filterset refid="variables.to.replace" />
</copy>
<copy todir="build/">
<fileset dir="metadata/" includes="messages*.properties" />
</copy>
<!-- Copy module web data -->
<copy todir="build/web/module/">
<fileset dir="web/module/" includes="**/*" excludes="resources/**/*" />
<filterset refid="variables.to.replace" />
</copy>
<!-- Copy the /web/resources folder separately so that image files are not corrupted -->
<copy todir="build/web/module/">
<fileset dir="web/module/" includes="resources/**/*" />
</copy>
<!-- Copy lib folder -->
<!-- (lib should only contain this module's required -->
<!-- libraries that OpenMRS doesn't contain already) -->
<copy todir="build/lib" failonerror="false">
<fileset dir="lib" includes="**/*" />
</copy>
<!-- Create distributable jar file -->
<jar destfile="dist/${module.id}-${module.version}.omod">
<fileset dir="build" includes="**/*" />
</jar>
</target>
<target name="package-jar" depends="package-module" description="Packages class files into jar file to be included in other projects">
<!-- Create distributable jar file -->
<jar destfile="dist/${module.id}-${module.version}.jar">
<fileset dir="build" >
<exclude name="web/**/*" />
<exclude name="test/**/*" />
</fileset>
</jar>
</target>
<target name="deploy-web" depends="init" description="Copy web files to webapp">
<copy todir="${tomcat.home}/webapps/openmrs/WEB-INF/view/module/${module.id}">
<fileset dir="web/module" includes="**/*" />
</copy>
</target>
</project>