ivy教程(10)-架设仓库(2)-基础仓库复制
时间:2011-08-02 BlogJava sky''s blog
在这个步骤中我们使用install任务来从maven2 仓库安装模块到一个基于文件系统的仓库。我们首先 安装一个不带依赖的模块,然后安装一个带有依赖的模块。
1) 基础: 使用ivysettings.xml文件
这里我们使用的ivy设置文件非常简单。它定义两个解析器,libraries 和 my-repository. 第一个作 为源使用,第二个作为目的地。在典型的安装中第二个仓库将使用包含设置来配置,被这个开发团队使用 。
<ivysettings>
<settings defaultCache="${ivy.cache.dir}/no-namespace"
defaultResolver="libraries"
defaultConflictManager="all" />
<!-- in order to get all revisions without any eviction -->
<resolvers>
<ibiblio name="libraries" m2compatible="true" />
<filesystem name="my-repository">
<ivy pattern="${dest.repo.dir}/no-namespace/[organisation]/[module]/ivys/ivy- [revision].xml"/>
<artifact pattern="${dest.repo.dir}/no-namespace/[organisation]/[module]/[type]s/ [artifact]-[revision].[ext]"/>
</filesystem>
</resolvers>
</ivysettings>
2) 安装不带依赖的简单模块
让我们看一下maven2 target
<target name="maven2" depends="init-ivy"
description="--> install module from maven 2 repository">
<ivy:install settingsRef="basic.settings"
organisation="commons-lang" module="commons-lang" revision="1.0"
from="${from.resolver}" to="${to.resolver}" />
</target>
很简单,我们使用和以往一样用ivy:settings装载的设置来调用[ant:install] 任务,我们通过使用 属性提供fromResolver (源) 和 toResolver (目的) 来简化脚本的维护。我们的解析器主要 是:''libraries'' 作为源而''my-repository''作为目的地.
ivy教程(10)-架设仓库(2)-基础仓库复制(2)
时间:2011-08-02 BlogJava sky''s blog
这是ant调用的输出:
Z:\>ant maven2
Buildfile: build.xml
load-ivy:
init-ivy:
maven2:
[ivy:install] :: loading settings :: url = jar:file://home/xavier/.ivy2/jars/ivy.jar!/org/apache/ivy/core/settings/ivysettings.xml
[ivy:install] :: Ivy 2.0.0-beta1-local-20071130005044 - 20071130005044 :: http://ant.apache.org/ivy/ ::
:: loading settings :: file = /home/xavier/ivy/settings/ivysettings-advanced.xml
[ivy:install] :: installing commons-lang#commons-lang;1.0 ::
[ivy:install] :: resolving dependencies ::
[ivy:install] found commons-lang#commons-lang;1.0 in libraries
[ivy:install] :: downloading artifacts to cache ::
[ivy:install] downloading http://repo1.maven.org/maven2/commons-lang/commons- lang/1.0/commons-lang-1.0.jar ...
[i
|