-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
60 lines (53 loc) · 2.68 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
<project name="ooici-iosp" default="dist" xmlns:ivy="antlib:org.apache.ivy.ant" basedir=".">
<!-- import properties -->
<property file="build.properties" />
<!-- ivy properties & settings -->
<property file="${settings.dir}/ivysettings.properties" />
<ivy:settings file="${settings.dir}/ivysettings.xml" />
<!-- ooici properties -->
<property file="${settings.dir}/ooici.properties" />
<!-- import the ooici_build.xml -->
<import file="${settings.dir}/ooici-build.xml" />
<!--
Targets that can be overridden:
- pre-compile: Called before javac compilation - empty by default, override in build.xml to use
- post-compile: Called after javac compilation - empty by default, override in build.xml to use
- pre-dist: Called before all actions in the dist target - empty by default, override in build.xml to use
- post-dist: Called after all actions in the dist target - empty by default, override in build.xml to use
- clean-more: Called at the end of 'clean' - empty by default, override in build.xml to use
-->
<!-- =================================
target: post-compile
================================= -->
<target name="post-compile" >
</target>
<!-- =================================
target: test-all
================================= -->
<target name="test-all" description="--> Runs all tests">
<antcall target="test-sos"/>
<antcall target="test-usgs"/>
<antcall target="test-ncagent"/>
</target>
<!-- =================================
target: test-sos
================================= -->
<target name="test-sos" depends="compile" description="--> Runs a canned sos test">
<property name="msg" value="Testing SosAgent..."/>
<java classpathref="runtime.classpath" classname="net.ooici.eoi.datasetagent.impl.SosAgent" />
</target>
<!-- =================================
target: test-usgs
================================= -->
<target name="test-usgs" depends="compile" description="--> Runs a canned usgs test">
<property name="msg" value="Testing UsgsAgent..."/>
<java classpathref="runtime.classpath" classname="net.ooici.eoi.datasetagent.impl.UsgsAgent" />
</target>
<!-- =================================
target: test-ncagent
================================= -->
<target name="test-ncagent" depends="compile" description="--> Runs a canned netcdf test">
<property name="msg" value="Testing NcAgent..."/>
<java classpathref="runtime.classpath" classname="net.ooici.eoi.datasetagent.impl.NcAgent" />
</target>
</project>