mirror of https://github.com/apache/ant-ivy
55 lines
2.7 KiB
XML
55 lines
2.7 KiB
XML
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you 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="1.0">
|
|
<info organisation="apache"
|
|
module="ivy"
|
|
status="integration"
|
|
/>
|
|
<configurations>
|
|
<conf name="core" description="only ivy core, without ant tasks and any dependencies"/>
|
|
<conf name="httpclient" extends="core" description="core + optional httpclient for better http handling"/>
|
|
<conf name="oro" extends="core" description="to use optional glob matcher"/>
|
|
<conf name="vfs" extends="core" description="core + optional VirtualFileSystem(VFS) support" />
|
|
<conf name="sftp" extends="core" description="core + optional SFTP support" />
|
|
<conf name="standalone" extends="core" description="to launch in standalone mode (from command line)"/>
|
|
<conf name="default" description="full ivy with all dependencies"/>
|
|
<conf name="test" description="dependencies used for junit testing ivy" visibility="private" />
|
|
</configurations>
|
|
<publications>
|
|
<artifact name="ivy" type="jar" conf="default"/>
|
|
<artifact name="ivy-core" type="jar" conf="core"/>
|
|
</publications>
|
|
<dependencies>
|
|
<dependency org="ant" name="ant" rev="1.6.5" conf="default"/>
|
|
<dependency org="commons-httpclient" name="commons-httpclient" rev="3.0" conf="default,httpclient->runtime,master">
|
|
<exclude org="junit" name="junit"/>
|
|
</dependency>
|
|
<dependency org="commons-cli" name="commons-cli" rev="1.0" conf="default,standalone->runtime,master">
|
|
<exclude org="junit" name="junit"/>
|
|
</dependency>
|
|
<dependency org="oro" name="oro" rev="2.0.8" conf="default,oro->default"/>
|
|
<dependency org="commons-vfs" name="commons-vfs" rev="1.0" conf="default,vfs->default" />
|
|
<dependency org="jsch" name="jsch" rev="0.1.25" conf="default,sftp->default" />
|
|
<!-- Test depdendencies -->
|
|
<dependency org="ant" name="ant-launcher" rev="1.6.5" conf="test->default"/>
|
|
<dependency org="junit" name="junit" rev="3.8.2" conf="test->default" />
|
|
<dependency org="commons-lang" name="commons-lang" rev="[1.0,3.0[" conf="test->default" />
|
|
</dependencies>
|
|
</ivy-module>
|