| 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| 2 | <!--
|
|---|
| 3 | Licensed to the Apache Software Foundation (ASF) under one
|
|---|
| 4 | or more contributor license agreements. See the NOTICE file
|
|---|
| 5 | distributed with this work for additional information
|
|---|
| 6 | regarding copyright ownership. The ASF licenses this file
|
|---|
| 7 | to you under the Apache License, Version 2.0 (the
|
|---|
| 8 | "License"); you may not use this file except in compliance
|
|---|
| 9 | with the License. You may obtain a copy of the License at
|
|---|
| 10 |
|
|---|
| 11 | https://www.apache.org/licenses/LICENSE-2.0
|
|---|
| 12 |
|
|---|
| 13 | Unless required by applicable law or agreed to in writing,
|
|---|
| 14 | software distributed under the License is distributed on an
|
|---|
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|---|
| 16 | KIND, either express or implied. See the License for the
|
|---|
| 17 | specific language governing permissions and limitations
|
|---|
| 18 | under the License.
|
|---|
| 19 | -->
|
|---|
| 20 | <ivy-module version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
|
|---|
| 21 | <info organisation="org.apache.ivy" module="ivy" revision="2.5.0" status="release" publication="20191020104435">
|
|---|
| 22 | <description homepage="http://ant.apache.org/ivy/">
|
|---|
| 23 | Apache Ivy is a tool for managing (recording, tracking, resolving and reporting) project dependencies.
|
|---|
| 24 | </description>
|
|---|
| 25 | </info>
|
|---|
| 26 | <configurations defaultconfmapping="*->default">
|
|---|
| 27 | <conf name="core" description="only ivy jar, without any dependencies"/>
|
|---|
| 28 | <conf name="httpclient" extends="core" description="core + optional httpclient for better http handling"/>
|
|---|
| 29 | <conf name="oro" extends="core" description="to use optional glob matcher"/>
|
|---|
| 30 | <conf name="vfs" extends="core" description="core + optional VirtualFileSystem(VFS) support"/>
|
|---|
| 31 | <conf name="sftp" extends="core" description="core + optional SFTP support"/>
|
|---|
| 32 | <conf name="standalone" extends="core" description="to launch in standalone mode (from command line)"/>
|
|---|
| 33 | <conf name="ant" extends="core" description="core + ant jar provided as a dependency"/>
|
|---|
| 34 | <conf name="default" extends="core" description="full ivy with all dependencies"/>
|
|---|
| 35 | <conf name="test" description="dependencies used for junit testing ivy" visibility="private"/>
|
|---|
| 36 | <conf name="source" description="ivy sources"/>
|
|---|
| 37 | </configurations>
|
|---|
| 38 | <publications>
|
|---|
| 39 | <artifact name="ivy" type="jar" conf="core"/>
|
|---|
| 40 | <artifact name="ivy" type="source" ext="jar" conf="source"/>
|
|---|
| 41 | </publications>
|
|---|
| 42 | <!-- Definition of the version is done in version.properties -->
|
|---|
| 43 | <dependencies>
|
|---|
| 44 | <dependency org="org.apache.ant" name="ant" rev="1.9.14" conf="default,ant"/>
|
|---|
| 45 | <dependency org="org.apache.httpcomponents" name="httpclient" rev="4.5.9" conf="default,httpclient->runtime,master"/>
|
|---|
| 46 | <dependency org="oro" name="oro" rev="2.0.8" conf="default,oro"/>
|
|---|
| 47 | <dependency org="org.apache.commons" name="commons-vfs2" rev="2.2" conf="default,vfs"/>
|
|---|
| 48 | <dependency org="com.jcraft" name="jsch" rev="0.1.55" conf="default,sftp"/>
|
|---|
| 49 | <dependency org="com.jcraft" name="jsch.agentproxy" rev="0.0.9" conf="default,sftp"/>
|
|---|
| 50 | <dependency org="com.jcraft" name="jsch.agentproxy.connector-factory" rev="0.0.9" conf="default,sftp"/>
|
|---|
| 51 | <dependency org="com.jcraft" name="jsch.agentproxy.jsch" rev="0.0.9" conf="default,sftp"/>
|
|---|
| 52 | <dependency org="org.bouncycastle" name="bcpg-jdk15on" rev="1.62" conf="default"/>
|
|---|
| 53 | <dependency org="org.bouncycastle" name="bcprov-jdk15on" rev="1.62" conf="default"/>
|
|---|
| 54 |
|
|---|
| 55 | <!-- Test dependencies -->
|
|---|
| 56 | <dependency org="junit" name="junit" rev="4.12" conf="test"/>
|
|---|
| 57 | <dependency org="org.hamcrest" name="hamcrest-core" rev="1.3" conf="test"/>
|
|---|
| 58 | <dependency org="org.hamcrest" name="hamcrest-library" rev="1.3" conf="test"/>
|
|---|
| 59 | <dependency org="org.apache.ant" name="ant-testutil" rev="1.9.14" conf="test" transitive="false"/>
|
|---|
| 60 | <dependency org="org.apache.ant" name="ant-launcher" rev="1.9.14" conf="test" transitive="false"/>
|
|---|
| 61 | <dependency org="org.apache.ant" name="ant-junit" rev="1.9.14" conf="test" transitive="false"/>
|
|---|
| 62 | <dependency org="org.apache.ant" name="ant-junit4" rev="1.9.14" conf="test" transitive="false"/>
|
|---|
| 63 | <dependency org="ant-contrib" name="ant-contrib" rev="1.0b3" conf="test" transitive="false"/>
|
|---|
| 64 | <dependency org="xmlunit" name="xmlunit" rev="1.6" conf="test" transitive="false"/>
|
|---|
| 65 |
|
|---|
| 66 | <!-- Global excludes -->
|
|---|
| 67 | <exclude org="junit" module="junit" conf="core,default,httpclient,oro,vfs,sftp,standalone,ant"/>
|
|---|
| 68 | <exclude org="org.hamcrest" module="hamcrest-core" conf="core,default,httpclient,oro,vfs,sftp,standalone,ant"/>
|
|---|
| 69 | <!-- Exclude the whole outdated commons-httpclient org -->
|
|---|
| 70 | <exclude org="commons-httpclient" conf="*"/>
|
|---|
| 71 | </dependencies>
|
|---|
| 72 | </ivy-module>
|
|---|