Skip to content

Commit 8db0c98

Browse files
committed
Adding top level ant test script for use with Travis CI
1 parent 755ec2e commit 8db0c98

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

ant.build.properties

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# AIMA-ALL
2+
# DO NOT MODIFY THIS FILE DIRECTLY -- use build.properties.local
3+
#
4+
# To use different values for properties in this file:
5+
# a) Create a build.properties.local in the same directory as build.xml
6+
# or
7+
# b) Use -Dproperty=value arguments
8+
9+
# DIRECTORY LOCATIONS
10+
path.to.aima-core.project=./aima-core
11+
path.to.aima-gui.project=./aima-gui
12+
path.to.aimax-osm.project=./aimax-osm

build.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
<project name="aima3e-java" basedir="." default="aima3e-java.test">
3+
<dirname property="aima3e-java.basedir" file="${ant.file.aima3e-java}"/>
4+
<property file="${aima-all.basedir}/ant.build.properties.local"/>
5+
<property file="${aima-all.basedir}/ant.build.properties"/>
6+
7+
<import file="${path.to.aima-core.project}/build.xml"/>
8+
9+
<target name="test" depends="aima-core.test-all">>
10+
</target>
11+
</project>

0 commit comments

Comments
 (0)