-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
24 lines (22 loc) · 800 Bytes
/
build.xml
File metadata and controls
24 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<project basedir="." default="build">
<description>
Build the documentation-examples-loader project, i.e., the project
of the optimizationBenchmarking tool chain responsible
for downloading examples, includings its dependencies of
group "org.optimizationBenchmarking".
</description>
<import>
<url url="https://raw.githubusercontent.com/optimizationBenchmarking/utils-build/master/dependencyBuilder.xml" />
</import>
<target name="build">
<sequential>
<buildWithDependencies githubProject="documentation-examples-loader">
<dependencies>
<dependency githubProject="utils-base" />
<dependency githubProject="evaluator-base" />
<dependency githubProject="evaluator-attributes" />
</dependencies>
</buildWithDependencies>
</sequential>
</target>
</project>