-
Notifications
You must be signed in to change notification settings - Fork 23
/
launchers.xml
26 lines (26 loc) · 1.12 KB
/
launchers.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
<project name="Launchers" default="create" basedir=".">
<target name="create">
<ant antfile="${main.buildfile}" target="launcher">
<property name="launcher-name" value="VDLx2Karajan"/>
<property name="class-name" value="org.griphyn.vdl.engine.Karajan"/>
</ant>
<ant antfile="${main.buildfile}" target="launcher">
<property name="launcher-name" value="VDLt2VDLx"/>
<property name="class-name" value="org.griphyn.vdl.toolkit.VDLt2VDLx"/>
</ant>
<ant antfile="build.xml" target="swift.launcher">
<property name="launcher-name" value="swift-log-info"/>
<property name="class-name" value="org.griphyn.vdl.karajan.monitor.monitors.http.SwiftLogInfo"/>
</ant>
<ant antfile="build.xml" target="swift.launcher">
<property name="launcher-name" value="swift-convert-config"/>
<property name="class-name" value="org.griphyn.vdl.util.ConvertConfig"/>
</ant>
<ant antfile="build.xml" target="swift.launcher">
<property name="launcher-name" value="swift-config-info"/>
<property name="class-name" value="org.griphyn.vdl.util.SwiftConfigInfo"/>
</ant>
</target>
<target name="webstart">
</target>
</project>