-
Notifications
You must be signed in to change notification settings - Fork 2
/
ivy.xml
53 lines (37 loc) · 2.13 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<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="com.jamasoftware" module="contour-api" />
<configurations>
<conf name="default" visibility="public" description="runtime
dependencies and master artifact can be used with this conf"
extends="runtime,master"/>
<conf name="master" visibility="public" description="contains
only the artifact published by this module itself, with no transitive
dependencies"/>
<conf name="compile" visibility="public" description="this is
the default scope, used if none is specified. Compile dependencies are
available in all classpaths."/>
<conf name="provided" visibility="public" description="this is
much like compile, but indicates you expect the JDK or a container to
provide it. It is only available on the compilation classpath, and is
not transitive."/>
<conf name="runtime" visibility="public" description="this
scope indicates that the dependency is not required for compilation,
but is for execution. It is in the runtime and test classpaths, but
not the compile classpath." extends="compile"/>
<conf name="test" visibility="public" description="this scope
indicates that the dependency is not required for normal use of the
application, and is only available for the test compilation and
execution phases." extends="runtime,master"/>
</configurations>
<publications>
</publications>
<dependencies>
<dependency org="org.seleniumhq.selenium" name="selenium-java" rev="2.34.0"/>
<dependency org="commons-lang" name="commons-lang" rev="2.6"/>
<dependency org="junit" name="junit" rev="4.10"/>
<dependency org="org.hamcrest" name="hamcrest-library" rev="1.3"/>
</dependencies>
</ivy-module>