-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdependencies.xml
More file actions
35 lines (28 loc) · 1.32 KB
/
dependencies.xml
File metadata and controls
35 lines (28 loc) · 1.32 KB
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="dependencies" default="depend.all">
<condition property="isWindows">
<os family="windows" />
</condition>
<target name="windows.directory.format" if="isWindows">
<dirname property="dependencies.basedir.windows" file="${ant.file.dependencies}"/>
<path id="dependencies.basedir.path">
<pathelement path="${dependencies.basedir.windows}" />
</path>
<pathconvert targetos="unix" property="dependencies.basedir" refid="dependencies.basedir.path"/>
</target>
<target name="unix.directory.format" unless="isWindows">
<dirname property="dependencies.basedir" file="${ant.file.dependencies}"/>
</target>
<!-- ================================================================== -->
<target name="depend.all" depends="depend.maven, depend.eclipse">
</target>
<!-- Maven Builds -->
<!-- ================================================================== -->
<target name="depend.maven" depends="windows.directory.format, unix.directory.format">
<ant dir="${dependencies.basedir}/build/maven" inheritAll="true"/>
</target>
<!-- Eclipse Builds -->
<target name="depend.eclipse" depends="depend.maven">
<ant dir="${dependencies.basedir}/interfaces/eclipse" inheritAll="true"/>
</target>
</project>