mirror of https://github.com/apache/ant-ivy
89 lines
3.6 KiB
XML
89 lines
3.6 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<?xml-stylesheet type="text/xsl" href="file:///j:/tools/ivy/src/doc/ivy.xsl"?>
|
|
<!--
|
|
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="1.0">
|
|
<info organisation="myorg"
|
|
module="mymodule"
|
|
revision="myrev"
|
|
status="integration"
|
|
publication="20041101110000"
|
|
>
|
|
<license name="mylicense" url="http://www.myorg.com/mymodule/mylicense.txt"/>
|
|
<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
|
|
<description homepage="http://www.myorg.com/mymodule/" onibiblio="false">
|
|
This module is great !<br/>
|
|
You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.<br/>
|
|
And you can even use <i>xhtml</i> in this <b>description</b>.
|
|
</description>
|
|
</info>
|
|
<configurations>
|
|
<conf name="myconf1" description="desc 1"/>
|
|
<conf name="myconf2" description="desc 2" visibility="public"/>
|
|
<conf name="myconf3" description="desc 3" visibility="private"/>
|
|
<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>
|
|
<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
|
|
</configurations>
|
|
<publications>
|
|
<artifact name="myartifact1" type="jar"/>
|
|
<artifact name="myartifact2" type="jar" conf="myconf1"/>
|
|
<artifact name="myartifact3" type="jar" conf="myconf1, myconf2, myconf3"/>
|
|
<artifact name="myartifact4" type="jar">
|
|
<conf name="myconf1"/>
|
|
<conf name="myconf3"/>
|
|
</artifact>
|
|
</publications>
|
|
<dependencies>
|
|
<dependency name="mymodule2" rev="2.0"/>
|
|
<dependency org="yourorg" name="yourmodule1" rev="1.1" conf="myconf1"/>
|
|
<dependency org="yourorg" name="yourmodule2" rev="2.1" conf="myconf1->yourconf1"/>
|
|
<dependency org="yourorg" name="yourmodule3" rev="3.1" conf="myconf1->yourconf1, yourconf2"/>
|
|
<dependency org="yourorg" name="yourmodule4" rev="4.1" conf="myconf1, myconf2->yourconf1, yourconf2"/>
|
|
<dependency org="yourorg" name="yourmodule5" rev="5.1" conf="myconf1->yourconf1;myconf2->yourconf1, yourconf2"/>
|
|
|
|
<dependency org="yourorg" name="yourmodule6" rev="6.1">
|
|
<conf name="myconf1" mapped="yourconf1"/>
|
|
<conf name="myconf2" mapped="yourconf1, yourconf2"/>
|
|
</dependency>
|
|
|
|
<dependency org="yourorg" name="yourmodule7" rev="7.1">
|
|
<conf name="myconf1">
|
|
<mapped name="yourconf1"/>
|
|
</conf>
|
|
<conf name="myconf2">
|
|
<mapped name="yourconf1"/>
|
|
<mapped name="yourconf2"/>
|
|
</conf>
|
|
</dependency>
|
|
|
|
<dependency org="yourorg" name="yourmodule8" rev="8.1">
|
|
<artifact name="yourartifact8-1" type="jar"/>
|
|
<artifact name="yourartifact8-2" type="jar"/>
|
|
</dependency>
|
|
|
|
<dependency org="yourorg" name="yourmodule9" rev="9.1" conf="myconf1,myconf2,myconf3->default">
|
|
<artifact name="yourartifact9-1" type="jar" conf="myconf1,myconf2"/>
|
|
<artifact name="yourartifact9-2" type="jar">
|
|
<conf name="myconf2"/>
|
|
<conf name="myconf3"/>
|
|
</artifact>
|
|
</dependency>
|
|
</dependencies>
|
|
</ivy-module>
|