-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
61 lines (58 loc) · 3.18 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2012-2016 Matt Bertolini
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:m="http://ant.apache.org/ivy/maven"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="com.mattbertolini" module="jxr-ant" status="integration" revision="${project.version}">
<license name="${project.license.name}" url="${project.license.url}"/>
<ivyauthor name="Matt Bertolini"/>
<description homepage="${project.url}">${project.description}</description>
</info>
<configurations>
<conf name="default"/>
<conf name="provided"/>
<conf name="test"/>
<conf name="build"/>
<conf name="findbugs"/>
<conf name="sources" visibility="private"/>
<conf name="javadoc" visibility="private"/>
</configurations>
<publications>
<artifact type="jar" ext="jar" conf="default"/>
<artifact type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
<artifact type="sources" ext="jar" conf="sources" m:classifier="sources"/>
<artifact type="pom" ext="pom"/>
</publications>
<dependencies defaultconfmapping="default->default">
<dependency org="org.apache.maven" name="maven-jxr" rev="2.5"/>
<dependency org="org.apache.ant" name="ant" rev="1.7.1" conf="provided->default"/>
<!-- Testing Dependencies -->
<dependency org="junit" name="junit" rev="4.12" conf="test->default"/>
<dependency org="org.apache.ant" name="ant-antunit" rev="1.3" conf="test->default">
<exclude module="ant"/>
<exclude module="ant-launcher"/>
</dependency>
<dependency org="org.mockito" name="mockito-core" rev="2.2.7" conf="test->default"/>
<dependency org="nl.jqno.equalsverifier" name="equalsverifier" rev="2.1.6" conf="test->default"/>
<!-- Build Dependencies -->
<dependency org="org.apache.ivy" name="ivy" rev="2.4.0" conf="build->default"/>
<dependency org="ant-contrib" name="ant-contrib" rev="1.0b3" conf="build->default">
<exclude module="ant"/>
</dependency>
<dependency org="org.jacoco" name="org.jacoco.ant" rev="0.7.7.201606060606" conf="build->default"/>
<dependency org="com.google.code.findbugs" name="findbugs" rev="3.0.1" conf="findbugs->default"/>
<dependency org="com.google.code.findbugs" name="findbugs-ant" rev="3.0.0" conf="findbugs->default"/>
<dependency org="org.bouncycastle" name="bcpg-jdk15on" rev="1.50" conf="build->default"/>
</dependencies>
</ivy-module>