-
Notifications
You must be signed in to change notification settings - Fork 23
/
dependencies.xml
36 lines (35 loc) · 1.2 KB
/
dependencies.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
<project name="Project dependencies" default="deps" basedir=".">
<!-- project dependencies -->
<target name="deps">
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="karajan"/>
</ant>
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-localscheduler"/>
</ant>
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-dcache"/>
</ant>
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-coaster"/>
</ant>
<antcall target="provider-deef"/>
<antcall target="provider-condor"/>
<antcall target="provider-wonky"/>
</target>
<target name="provider-deef" if="with-provider-deef">
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-deef"/>
</ant>
</target>
<target name="provider-condor" if="with-provider-condor">
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-condor"/>
</ant>
</target>
<target name="provider-wonky" if="with-provider-wonky">
<ant antfile="${main.buildfile}" target="dep">
<property name="module" value="provider-wonky"/>
</ant>
</target>
</project>