forked from SCADA-LTS/Scada-LTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
453 lines (402 loc) · 20.1 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="build" name="ScadaLTS">
<property name="version-major" value="0"/>
<property name="version-minor" value="9"/>
<property name="version-release" value="9"/>
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<property name="db.name" value="scada_lts"/>
<propertyfile file="build.properties" comment="ScadaLTS properties">
<entry key="db.type" value="mysql"/>
<entry key="db.url" value="jdbc:mysql://localhost/${db.name}"/>
<entry key="db.username" value="root"/>
<entry key="db.password" value="root"/>
<entry key="db.pool.maxActive" value="10"/>
<entry key="db.pool.maxIdle" value="10"/>
<entry key="app.version" value="${version-major}.${version-minor}.${version-release}"/>
</propertyfile>
<path id="tomcat.ant.classpath">
<pathelement location="${env.CATALINA_HOME}/lib/catalina-ant.jar"/>
</path>
<!-- Build, run and debug -->
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file} " />
<javac debug="true" debuglevel="${debuglevel}" destdir="build/classes" includeantruntime="false" source="${source}" target="${target}">
<src path="src"/>
<src path="test"/>
<classpath refid="ScadaLTS.classpath"/>
</javac>
</target>
<target name="run" depends="tomcat_clean_static_content">
<exec executable="cmd">
<arg value="/c"/>
<arg value="%CATALINA_HOME%\bin\startup.bat"/>
</exec>
</target>
<target name="debug" depends="tomcat_clean_static_content">
<exec executable="cmd">
<arg value="/c"/>
<arg value="%CATALINA_HOME%\bin\catalina.bat jpda start"/>
</exec>
</target>
<target name="clean">
<delete dir="build/classes"/>
</target>
<target name="war" description="Bundles the application as a WAR file" depends="clean, build, build-ui">
<delete dir="WebContent/resources/new-ui"></delete>
<mkdir dir="WebContent/resources/new-ui"></mkdir>
<mkdir dir="WebContent/resources/new-ui/css"></mkdir>
<mkdir dir="WebContent/resources/new-ui/js"></mkdir>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/css">
<fileset dir="ScadaLTS-UI-1/dist/static/css">
<include name="*"/>
</fileset>
<mapper type="glob" from="app.*.css" to="app.css"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="app.*.js" to="app.js"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="vendor.*.js" to="vendor.js"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="manifest.*.js" to="manifest.js"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="vendor.*.js.map" to="vendor.js.map"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="manifest.*.js.map" to="manifest.js.map"/>
</copy>
<copy includeemptydirs="false" todir="WebContent/resources/new-ui/js">
<fileset dir="ScadaLTS-UI-1/dist/static/js">
<include name="*"/>
</fileset>
<mapper type="glob" from="app.*.js.map" to="app.js.map"/>
</copy>
<mkdir dir="WebContent/WEB-INF/classes"/>
<copy includeemptydirs="false" todir="WebContent/WEB-INF/classes">
<fileset dir="build/classes">
<include name="**/*.class"/>
</fileset>
</copy>
<copy file="build.properties" todir="WebContent/WEB-INF/classes"/>
<war destfile="${ant.project.name}.war"
basedir="WebContent"
needxmlfile="false">
</war>
</target>
<target name="build-ui" depends="new-ui_win, new-ui_unix">
</target>
<!-- New ScadaLTS-UI targets -->
<target name="update-static-web-dependecy" description="Update static web dependency">
<exec dir="WebContent/resources/app" executable="bower">
<arg value="update"/>
</exec>
</target>
<target name="checkOS">
<condition property="isWindows">
<os family="windows"/>
</condition>
<condition property="isUnix">
<os family="unix"/>
</condition>
</target>
<target name="new-ui-dependency_win" depends="checkOS" if="isWindows">
<exec dir="./ScadaLTS-UI-1" executable="cmd">
<arg value="npm install"/>
</exec>
</target>
<target name="new-ui_win" depends="new-ui-dependency_win" if="isWindows">
<exec dir="./ScadaLTS-UI-1" executable="cmd">
<arg value="npm run"/>
<arg value="npm build"/>
</exec>
</target>
<target name="new-ui-dependency_unix" depends="checkOS" if="isUnix">
<exec dir="./ScadaLTS-UI-1" executable="npm">
<arg value="install"/>
</exec>
</target>
<target name="new-ui_unix" depends="new-ui-dependency_unix" if="isUnix">
<exec dir="./ScadaLTS-UI-1" executable="npm">
<arg value="run"/>
<arg value="build"/>
</exec>
</target>
<!-- Other targets -->
<target name="init">
<mkdir dir="build/classes"/>
<copy includeemptydirs="false" todir="build/classes">
<fileset dir="src">
<exclude name="**/*.launch"/>
<exclude name="**/*.xtend"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
<copy includeemptydirs="false" todir="build/classes">
<fileset dir="test">
<exclude name="**/*.launch"/>
<exclude name="**/*.xtend"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="clean_and_tomcat_deploy" description="Deploy prepared WAR file from project dir to Tomcat webapps folder">
<delete file="${env.CATALINA_HOME}/webapps/${ant.project.name}.war"></delete>
<delete dir="${env.CATALINA_HOME}/webapps/${ant.project.name}"></delete>
<copy file="${ant.project.name}.war" todir="${env.CATALINA_HOME}/webapps" overwrite="true">
</copy>
</target>
<target name="tomcat_clean_static_content" description="Delete static content">
<delete dir="${env.CATALINA_HOME}/work/Catalina/localhost"></delete>
</target>
<target name="war_config_test" description="Bundles the application as a WAR file with config test" depends="clean, build, junit">
<mkdir dir="WebContent/WEB-INF/classes"/>
<copy includeemptydirs="false" todir="WebContent/WEB-INF/classes">
<fileset dir="build/classes">
<include name="**/*.class"/>
<include name="**/*.properties"/>
</fileset>
</copy>
<war destfile="${ant.project.name}.war"
basedir="WebContent"
needxmlfile="false">
</war>
</target>
<!-- to option copy file to webapps :) -->
<path id="Web App Libraries.libraryclasspath">
<pathelement location="WebContent/WEB-INF/lib/OneWireAPI.jar"/>
<pathelement location="WebContent/WEB-INF/lib/RXTXcomm.jar"/>
<pathelement location="WebContent/WEB-INF/lib/activation.jar"/>
<pathelement location="WebContent/WEB-INF/lib/alpha24j.jar"/>
<pathelement location="WebContent/WEB-INF/lib/axis.jar"/>
<pathelement location="WebContent/WEB-INF/lib/bacnet4J.jar"/>
<pathelement location="WebContent/WEB-INF/lib/catalina-ant-6.0.29.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-beanutils-1.8.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-codec-1.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-collections-3.2.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-dbcp-jdbc4.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-discovery-0.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-fileupload-1.3.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-io.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-lang3-3.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-logging.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-pool.jar"/>
<pathelement location="WebContent/WEB-INF/lib/crowd-integration-client-2.1.1.jar"/>
<pathelement location="WebContent/WEB-INF/lib/derby.jar"/>
<pathelement location="WebContent/WEB-INF/lib/derbytools.jar"/>
<pathelement location="WebContent/WEB-INF/lib/dnp3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/dnp34j.jar"/>
<pathelement location="WebContent/WEB-INF/lib/dwr.jar"/>
<pathelement location="WebContent/WEB-INF/lib/ezmorph-1.0.6.jar"/>
<pathelement location="WebContent/WEB-INF/lib/fhz4j-core-0.1.4-SNAPSHOT.jar"/>
<pathelement location="WebContent/WEB-INF/lib/freemarker.jar"/>
<pathelement location="WebContent/WEB-INF/lib/flyway-core-4.0.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/iec101.jar"/>
<pathelement location="WebContent/WEB-INF/lib/j-interop-2.06.jar"/>
<pathelement location="WebContent/WEB-INF/lib/j-interopdeps-1.4.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jackson-annotations-2.8.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jackson-core-2.8.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jackson-databind-2.8.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/javamelody-1.59.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jaxrpc.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jboss-common-jdbc-wrapper-3.2.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jcifs-1.2.19.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jcommon-1.0.23.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jdom-1.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jfreechart-1.0.19.jar"/>
<pathelement location="WebContent/WEB-INF/lib/joda-time-2.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jrobin-1.5.9.jar"/>
<pathelement location="WebContent/WEB-INF/lib/js.jar"/>
<pathelement location="WebContent/WEB-INF/lib/json-lib-2.3-jdk15.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jstl-api-1.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jstl-impl-1.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jstl.jar"/>
<pathelement location="WebContent/WEB-INF/lib/log4j-1.2.17.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mail.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mbus4j-core-0.1.4-SNAPSHOT.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mbus4j-master-0.1.4-SNAPSHOT.jar"/>
<pathelement location="WebContent/WEB-INF/lib/modbus4j-3.0.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mysql-connector-java-3.1.8-bin.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mysql-connector-java-5.1.38-bin.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar"/>
<pathelement location="WebContent/WEB-INF/lib/ojdbc6.jar"/>
<pathelement location="WebContent/WEB-INF/lib/opc-driver.jar"/>
<pathelement location="WebContent/WEB-INF/lib/openscada-utils.jar"/>
<pathelement location="WebContent/WEB-INF/lib/openv4j-core-0.1.4-SNAPSHOT.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.openscada.opc.dcom-0.5.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.openscada.opc.lib-0.5.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.osgi.core-4.0.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.restlet-2.0.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.restlet.ext.json-2.0.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.restlet.ext.servlet-2.0.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/org.restlet.lib.org.json-2.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/postgresql-9.2-1000.jdbc4.jar"/>
<pathelement location="WebContent/WEB-INF/lib/quartz-1.6.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/rts.jar"/>
<pathelement location="WebContent/WEB-INF/lib/saaj.jar"/>
<pathelement location="WebContent/WEB-INF/lib/seroUtils.jar"/>
<pathelement location="WebContent/WEB-INF/lib/serotonin-timer.jar"/>
<pathelement location="WebContent/WEB-INF/lib/slf4j-api-1.5.11.jar"/>
<pathelement location="WebContent/WEB-INF/lib/slf4j-ext-1.5.11.jar"/>
<pathelement location="WebContent/WEB-INF/lib/slf4j-log4j12-1.5.11.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spinwave.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-aop-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-beans-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-context-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-context-support-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-core-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-expression-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-jdbc-3.2.17.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-jdbc-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-tx-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-tx-3.2.17.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-web-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-webmvc-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-websocket-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-messaging-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/spring-test-4.3.16.RELEASE.jar"/>
<pathelement location="WebContent/WEB-INF/lib/sqljdbc4.jar"/>
<pathelement location="WebContent/WEB-INF/lib/standard.jar"/>
<pathelement location="WebContent/WEB-INF/lib/taglibs-log.jar"/>
<pathelement location="WebContent/WEB-INF/lib/viconics.jar"/>
<pathelement location="WebContent/WEB-INF/lib/wsdl4j-1.5.1.jar"/>
<pathelement location="WebContent/WEB-INF/lib/wsdl4j.jar"/>
<pathelement location="WebContent/WEB-INF/lib/wss4j-1.5.8.jar"/>
<pathelement location="WebContent/WEB-INF/lib/xfire-aegis-1.2.6.jar"/>
<pathelement location="WebContent/WEB-INF/lib/xfire-core-1.2.6.jar"/>
<pathelement location="WebContent/WEB-INF/lib/xmlsec-1.4.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/junit-4.8.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mockito-all-1.9.5.jar"/>
<pathelement location="WebContent/WEB-INF/lib/mockito-core-2.11.0.jar"/>
<pathelement location="WebContent/WEB-INF/classes"/>
<path refid="Snmplibrary"/>
</path>
<path id="Snmplibrary">
<pathelement location="WebContent/WEB-INF/lib/snmp4j-2.7.0.jar"/>
</path>
<path id="EAR Libraries.libraryclasspath"/>
<path id="Apache Tomcat v7.0 [Apache Tomcat v7.0].libraryclasspath">
<pathelement location="${env.CATALINA_HOME}/lib/annotations-api.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/catalina-ant.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/catalina-ha.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/catalina-tribes.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/catalina.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/ecj-3.7.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/el-api.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/jasper-el.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/jasper.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/jsp-api.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/mail-1.4.1.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/servlet-api.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-api.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-coyote.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-dbcp.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-i18n-es.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-i18n-fr.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-i18n-ja.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-jdbc.jar"/>
<pathelement location="${env.CATALINA_HOME}/lib/tomcat-util.jar"/>
</path>
<path id="httpcomponents-client-4.5.3">
<pathelement location="WebContent/WEB-INF/lib/commons-codec-1.9.jar"/>
<pathelement location="WebContent/WEB-INF/lib/commons-logging-1.2.jar"/>
<pathelement location="WebContent/WEB-INF/lib/fluent-hc-4.5.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/httpclient-4.5.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/httpclient-cache-4.5.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/httpclient-win-4.5.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/httpcore-4.4.6.jar"/>
<pathelement location="WebContent/WEB-INF/lib/httpmime-4.5.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jna-4.1.0.jar"/>
<pathelement location="WebContent/WEB-INF/lib/jna-platform-4.1.0.jar"/>
</path>
<path id="ScadaLTS.classpath">
<pathelement location="build/classes"/>
<path refid="Web App Libraries.libraryclasspath"/>
<path refid="EAR Libraries.libraryclasspath"/>
<path refid="httpcomponents-client-4.5.3"/>
<pathelement location="WebContent/WEB-INF/lib/wsdl4j-1.5.1.jar"/>
<pathelement location="WebContent/WEB-INF/lib/wss4j-1.5.8.jar"/>
<pathelement location="WebContent/WEB-INF/lib/xmlsec-1.4.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/opc-driver.jar"/>
<pathelement location="WebContent/WEB-INF/lib/dnp34j.jar"/>
<pathelement location="WebContent/WEB-INF/lib/iec101.jar"/>
<pathelement location="WebContent/WEB-INF/lib/rts.jar"/>
<pathelement location="WebContent/WEB-INF/lib/bacnet4J.jar"/>
<pathelement location="WebContent/WEB-INF/lib/sqljdbc4.jar"/>
<pathelement location="WebContent/WEB-INF/lib/alpha24j.jar"/>
<pathelement location="lib/mockito-all-1.9.5.jar"/>
<pathelement location="WebContent/WEB-INF/lib/joda-time-2.3.jar"/>
<pathelement location="WebContent/WEB-INF/lib/modbus4j-2.0.2.jar"/>
<path refid="Apache Tomcat v7.0 [Apache Tomcat v7.0].libraryclasspath"/>
</path>
<target name="junit">
<junit printsummary="yes" haltonfailure="no">
<formatter type="plain" usefile="false" />
<classpath refid="ScadaLTS.classpath">
</classpath>
<!--
<test name="br.org.scadabr.api.AckEventsTest"
haltonfailure="no">
</test>
<test name="br.org.scadabr.api.ActiveEventsTest"
haltonfailure="no">
</test>
<test name="br.org.scadabr.api.ActiveEventsTest"
haltonfailure="no">
</test>
-->
<!--
<test name="org.scada_lts.dao.ViewHierarchyDaoTest"
haltonfailure="no">
</test>
<test name="org.scada_lts.service.ViewHierarchyServiceTest"
haltonfailure="yes">
</test>
<test name="org.scada_lts.service.ViewHierarchyServiceTestOnDB"
haltonfailure="yes">
</test>
-->
<!--
<test name="org.scada_lts.service.ViewHierarchyServiceMoveFolderTest"
haltonfailure="yes">
</test>
<test name="org.scada_lts.service.ViewHierarchyServiceMoveViewTest"
haltonfailure="yes">
</test>
-->
<test name="org.scada_lts.cached.DataPointsCacheComposeDataSourcesDataTest"
haltonfailure="yes">
</test>
<test name="org.scada_lts.cached.DataSourcePointsCacheMockitoTest"
haltonfailure="yes">
</test>
<test name="com.serotonin.mango.rt.dataSource.snmp.SnmpDataSourceRTTest"
haltonfailure="yes">
</test>
<!--
<test name=""
haltonfailure="yes">
</test> -->
</junit>
</target>
</project>