mirror of https://github.com/apache/ant-ivy
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
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
|
|
|
|
https://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">
|
|
|
|
<info organisation="apache" module="resolve-extends" revision="1.2" status="release">
|
|
<!-- <extends organisation="apache" module="resolve-simple" revision="1.0" location="./ivy-multiconf.xml"/> -->
|
|
|
|
<!-- description inherited from parent -->
|
|
<description>Demonstrates configuration-specific dependencies</description>
|
|
</info>
|
|
|
|
<configurations>
|
|
<!-- conf not in parent -->
|
|
<conf name="extra"/>
|
|
<!-- overrides conf in parent -->
|
|
<conf name="default" extends="compile" description="overrides the conf definition in parent descriptor"/>
|
|
|
|
<!-- configurations inherited from apache#resolve-simple;1.0 -->
|
|
<conf name="compile" visibility="public"/>
|
|
</configurations>
|
|
|
|
<publications/>
|
|
|
|
<dependencies>
|
|
<!-- dependencies inherited from apache#resolve-simple;1.0 -->
|
|
<dependency org="org1" name="mod1.2" rev="2.0" conf="default->default"/>
|
|
<dependency org="org1" name="mod1.1" rev="2.0" transitive="false" conf="compile->default"/>
|
|
<!-- dependencies inherited end -->
|
|
<!-- not in parent -->
|
|
<dependency org="org2" name="mod2.1" rev="0.3" conf="default->compile(default)"/>
|
|
<!-- overrides parent -->
|
|
<dependency org="org1" name="mod1.1" rev="1.1" conf="default,compile->default" transitive="false"/>
|
|
</dependencies>
|
|
|
|
</ivy-module>
|