-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.xml
More file actions
21 lines (21 loc) · 1.03 KB
/
config.xml
File metadata and controls
21 lines (21 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<project name="BuildConfig" xmlns:maven="urn:maven-ant">
<!-- Load the Maven Ant tasks so that we can work with Maven repositories. -->
<typedef uri="urn:maven-ant"
classpath="lib/maven-ant-tasks-2.1.3.jar"
resource="org/apache/maven/artifact/ant/antlib.xml"/>
<!-- set pom file and dependencies -->
<maven:pom id="mypom" file="pom.xml"/>
<maven:remoteRepository id="remote.repository" url="https://repo1.maven.org/maven2" />
<maven:dependencies pathId="MAVEN_DEPS" pomRefId="mypom">
<remoteRepository refid="remote.repository" />
</maven:dependencies>
<!-- Set the current WhileyLabs version -->
<property name="version" value="${mypom.version}"/>
<!-- Set project layout -->
<property name="SRC_DIR" location="src"/>
<property name="JAVA_DIR" location="${SRC_DIR}/java"/>
<property name="BIN_DIR" location="target"/>
<property name="CLASS_DIR" location="${BIN_DIR}/classes"/>
<!-- Paths to required JARs -->
<property name="JWEBKIT" value="lib/jwebkit-v0.1.0.jar"/>
</project>