-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
39 lines (36 loc) · 2.94 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
<?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"
xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="org.wetator"
module="wetator-ant"
revision="${application.pubversion}">
<license name="Apache License, Version 2.0" url="http://www.apache.org/licenses/LICENSE-2.0.txt" />
<description homepage="http://www.wetator.org">
Smart web application testing
</description>
</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="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 type="pom" ext="pom" conf="default" />
<artifact type="jar" ext="jar" conf="master" />
<artifact type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc" />
<artifact type="source" ext="jar" conf="sources" m:classifier="sources" />
</publications>
<dependencies defaultconfmapping="sources->sources;test->default,provided;%->default" defaultconf="compile,sources">
<dependency org="org.apache.ant" name="ant" rev="1.10.12" transitive="false" />
<dependency org="org.wetator" name="wetator" rev="3.5.0" changing="true" />
<dependency org="commons-logging" name="commons-logging" rev="1.2" changing="true" />
</dependencies>
</ivy-module>