forked from santa-dev/santa-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
36 lines (30 loc) · 1.66 KB
/
ivy.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="org.fredhutch" module="binomial" status="integration">
</info>
<!-- ivy config for maintaining copies of jar files locally in -->
<!-- libdirectory where they are easy to find, and easy to add to classpath. -->
<!-- http://stackoverflow.com/a/8718277/1135316 -->
<configurations>
<conf name="compile" description="Required to compile application"/>
<conf name="runtime" description="Additional run-time dependencies" extends="compile"/>
<conf name="test" description="Required for test only" extends="runtime"/>
<conf name="sources" description="Source jars"/>
<conf name="binaries" description="binary jars"/>
</configurations>
<!-- Search for dependency information at http://search.maven.org/ -->
<dependencies>
<dependency org="org.apache.commons" name="commons-math3"
rev="3.6.1" conf="binaries->default"/>
<dependency org="org.apache.commons" name="commons-math3"
rev="3.6.1" conf="sources->sources"/>
<dependency org="org.apache.commons" name="commons-lang3" rev="3.4" conf="binaries->default"/>
<dependency org="org.apache.commons" name="commons-lang3" rev="3.4" conf="sources->sources"/>
<dependency org="org.jdom" name="jdom2" rev="2.0.6" conf="binaries->default"/>
<dependency org="org.jdom" name="jdom2" rev="2.0.6" conf="sources->sources"/>
<!-- test dependencies -->
<dependency org="junit" name="junit" rev="4.11" conf="binaries->default"/>
</dependencies>
</ivy-module>