This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ivy.xml
67 lines (57 loc) · 3.63 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2013 Rimero Solutions
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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.rimerosolutions.ant" module="ant-wrapper" status="release" >
<license name="The Apache Software License, Version 2.0"
url="http://www.apache.org/licenses/LICENSE-2.0.txt" />
<ivyauthor name="Rimero Solutions" url="[email protected]"/>
<description homepage="https://github.com/rimerosolutions/ant-wrapper">
Apache Ant Command Line Wrapper.
</description>
</info>
<configurations>
<conf name="compile" description="Compile-time dependencies"/>
<conf name="test" description="Test dependencies"/>
<conf name="release" visibility="private" description="Ant Git Tasks release dependencies"/>
<conf name="findbugs" visibility="private" description="Findbugs dependencies"/>
<conf name="cobertura" visibility="private" description="Cobertura dependencies"/>
</configurations>
<publications xmlns:e="urn:ant.apache.org:ivy-extras">
<artifact name="ant-wrapper" type="jar" ext="jar"/>
<artifact name="ant-wrapper" type="pom" ext="pom"/>
<artifact name="ant-wrapper" type="source" ext="jar" e:classifier="sources"/>
<artifact name="ant-wrapper" type="javadoc" ext="jar" e:classifier="javadoc"/>
</publications>
<dependencies defaultconfmapping="*->default">
<!-- compile dependencies -->
<dependency org="org.apache.ant" name="ant-launcher" rev="1.7.0" conf="compile"/>
<dependency org="org.apache.ant" name="ant" rev="1.7.0" conf="compile"/>
<!-- test dependencies -->
<dependency org="org.mockito" name="mockito-all" rev="1.9.5" conf="test"/>
<dependency org="org.hamcrest" name="hamcrest-all" rev="1.3" conf="test"/>
<dependency org="junit" name="junit" rev="4.11" conf="test"/>
<dependency org="org.apache.ant" name="ant-junit" rev="1.7.1" conf="test"/>
<!-- release dependencies -->
<dependency org="com.rimerosolutions.ant" name="ant-git-tasks" rev="0.0.1" conf="release"/>
<dependency org="org.eclipse.jgit" name="org.eclipse.jgit.ant" rev="3.0.0.201306101825-r" conf="release"/>
<dependency org="org.eclipse.jgit" name="org.eclipse.jgit" rev="3.0.0.201306101825-r" conf="release"/>
<dependency org="com.jcraft" name="jsch" rev="0.1.50" conf="release"/>
<!-- cobertura -->
<dependency org="net.sourceforge.cobertura" name="cobertura" rev="1.9.4.1" conf="cobertura" />
<!-- findbugs -->
<dependency org="com.google.code.findbugs" name="findbugs-ant" rev="2.0.1" conf="findbugs"/>
</dependencies>
</ivy-module>