-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.xml
37 lines (30 loc) · 1.67 KB
/
config.xml
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
36
37
<project name="BuildConfig" xmlns:maven="urn:maven-ant">
<!-- Get the root directory of the project by looking at the directory enclosing this file. -->
<dirname property="rootdir" file="${ant.file.BuildConfig}"/>
<!-- Set the current Whiley version -->
<property name="version" value="0.6.0-SNAPSHOT"/>
<!-- Load the Maven Ant tasks so that we can work with Maven repositories. -->
<typedef uri="urn:maven-ant"
classpath="${rootdir}/lib/maven-ant-tasks-2.1.3.jar"
resource="org/apache/maven/artifact/ant/antlib.xml"/>
<!-- Paths to common DIRs -->
<property name="LIB_DIR" value="${rootdir}/lib/"/>
<property name="RELEASE_DIR" value="${rootdir}/dist/wdk-v${version}/"/>
<!-- Identify Local Dependencies -->
<fileset id="local.dependencies" dir="${LIB_DIR}">
<filename name="**/*.jar"/>
<filename name="**/maven*" negate="True"/>
</fileset>
<maven:remoteRepository id="remote.repository" url="https://repo1.maven.org/maven2" />
<!-- Identify Local Dependencies -->
<maven:dependencies filesetId="remote.dependencies">
<dependency groupId="org.whiley" artifactId="wycc" version="0.9.9"/>
<dependency groupId="org.whiley" artifactId="wycli" version="0.9.9"/>
<dependency groupId="org.whiley" artifactId="wyc" version="0.9.9"/>
<dependency groupId="org.whiley" artifactId="wyjs" version="0.9.6"/>
<dependency groupId="org.whiley" artifactId="wyboogie" version="0.3.4"/>
<dependency groupId="org.whiley" artifactId="jmodelgen" version="0.4.3"/>
<dependency groupId="org.apache.httpcomponents" artifactId="httpclient" version="4.5.10"/>
<remoteRepository refid="remote.repository" />
</maven:dependencies>
</project>