-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (23 loc) · 826 Bytes
/
build.xml
File metadata and controls
25 lines (23 loc) · 826 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
25
<project basedir="." default="build">
<description>
Build the evaluator-attributes project, the project holding the
basic attributes of the evaluator, i.e., the information which
can be computed by the evaluator and which is later presented
by the evaluator modules.
</description>
<import>
<url url="https://raw.githubusercontent.com/optimizationBenchmarking/utils-build/master/dependencyBuilder.xml" />
</import>
<target name="build">
<sequential>
<buildWithDependencies githubProject="evaluator-attributes">
<dependencies>
<dependency githubProject="evaluator-base" />
<dependency githubProject="utils-base" />
<dependency githubProject="utils-math" />
<dependency githubProject="utils-ml" />
</dependencies>
</buildWithDependencies>
</sequential>
</target>
</project>