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 39
/
Copy pathivy.xml
64 lines (54 loc) · 3.29 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
<?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-git-tasks" 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-git-tasks">
This is a set of basic Apache Ant Git tasks.
</description>
</info>
<configurations>
<conf name="compile" description="Compile dependencies"/>
<conf name="test" description="Tests dependencies"/>
<conf name="findbugs" visibility="private" description="Findbugs dependencies"/>
<conf name="jacoco" visibility="private" description="Jacoco dependencies"/>
<conf name="wrapper" visibility="private" description="Ant wrapper dependencies"/>
</configurations>
<publications xmlns:e="urn:ant.apache.org:ivy-extras">
<artifact name="ant-git-tasks" type="jar" ext="jar"/>
<artifact name="ant-git-tasks" type="pom" ext="pom"/>
<artifact name="ant-git-tasks" type="source" ext="jar" e:classifier="sources"/>
<artifact name="ant-git-tasks" type="javadoc" ext="jar" e:classifier="javadoc"/>
</publications>
<dependencies defaultconfmapping="*->default">
<!-- compile -->
<dependency org="org.eclipse.jgit" name="org.eclipse.jgit.ant" rev="3.0.0.201306101825-r" conf="compile"/>
<dependency org="org.eclipse.jgit" name="org.eclipse.jgit" rev="3.0.0.201306101825-r" conf="compile"/>
<dependency org="com.jcraft" name="jsch" rev="0.1.50" conf="compile"/>
<!-- test -->
<dependency org="junit" name="junit" rev="4.4" conf="test"/>
<dependency org="org.apache.ant" name="ant-junit" rev="1.7.1" conf="test"/>
<dependency org="org.apache.ant" name="ant-antunit" rev="1.2" conf="test"/>
<!-- Jacoco -->
<dependency org="org.jacoco" name="org.jacoco.ant" rev="0.7.2.201409121644" conf="jacoco" />
<!-- findbugs -->
<dependency org="com.google.code.findbugs" name="findbugs-ant" rev="2.0.1" conf="findbugs"/>
<!-- wrapper -->
<dependency org="com.rimerosolutions.ant" name="ant-wrapper" rev="0.0.1" conf="wrapper"/>
</dependencies>
</ivy-module>