forked from iriusrisk/bdd-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
74 lines (73 loc) · 4.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="net.continuumsecurity"
module="bdd-security"
revision="0.2-SNAPSHOT"
status="integration">
<description homepage="http://maven.apache.org"/>
<m:properties__project.build.sourceEncoding>UTF-8</m:properties__project.build.sourceEncoding>
<m:properties__jbehave.core.version>3.8</m:properties__jbehave.core.version>
<m:maven.plugins>
org.apache.maven.plugins__maven-compiler-plugin__3.1|org.codehaus.mojo__exec-maven-plugin__1.2.1|org.codehaus.mojo__build-helper-maven-plugin__1.7|org.apache.maven.plugins__maven-dependency-plugin__null
</m:maven.plugins>
</info>
<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="private"
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"/>
<conf name="system" visibility="public"
description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/>
<conf name="sources" visibility="public"
description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" visibility="public"
description="this configuration contains the javadoc artifact of this module, if any."/>
<conf name="optional" visibility="public" description="contains all optional dependencies"/>
</configurations>
<publications>
<artifact name="bdd-security" type="jar" ext="jar" conf="master"/>
</publications>
<dependencies>
<!-- Needed for Nessus REST interface -->
<dependency org="org.glassfish.jersey.core" name="jersey-client" rev="2.15"/>
<dependency org="com.fasterxml.jackson.jaxrs" name="jackson-jaxrs-json-provider" rev="2.4.1"/>
<dependency org="org.glassfish.jersey.media" name="jersey-media-moxy" rev="2.15"/>
<!-- Needed for Nessus REST interface -->
<dependency org="junit" name="junit-dep" rev="4.11" />
<dependency org="org.hamcrest" name="hamcrest-all" rev="1.3"/>
<dependency org="org.jbehave" name="jbehave-core" rev="3.9.1">
<exclude org="org.hamcrest"/>
<exclude org="junit"/>
</dependency>
<dependency org="org.seleniumhq.selenium" name="selenium-java" rev="2.44.0">
<exclude org="junit"/>
</dependency>
<dependency org="de.codecentric" name="jbehave-junit-runner" rev="1.1.2"/>
<dependency org="org.seleniumhq.selenium" name="selenium-api" rev="2.44.0"/>
<dependency org="log4j" name="log4j" rev="1.2.17"/>
<dependency org="args4j" name="args4j" rev="2.0.16"/>
<dependency org="org.codehaus.groovy" name="groovy-all" rev="1.8.5"/>
<dependency org="commons-configuration" name="commons-configuration" rev="1.8"/>
<dependency org="uk.com.robust-it" name="cloning" rev="1.9.0"/>
<dependency org="jline" name="jline" rev="2.6"/>
<dependency org="com.googlecode.java-diff-utils" name="diffutils" rev="1.2.1"/>
<dependency org="org.apache.httpcomponents" name="httpcore" rev="4.2.3"/>
<dependency org="org.codehaus.jackson" name="jackson-mapper-asl" rev="1.9.12"/>
<dependency org="commons-jxpath" name="commons-jxpath" rev="1.3"/>
<dependency org="org.mortbay.jetty" name="jetty-runner" rev="8.1.14.v20131031"/>
<dependency org="org.glassfish.jersey.core" name="jersey-client" rev="2.6"/>
<dependency org="org.glassfish.jersey.connectors" name="jersey-apache-connector" rev="2.6" />
<dependency org="net.htmlparser.jericho" name="jericho-html" rev="3.3"/>
</dependencies>
</ivy-module>