3

我正在尝试添加一个本地 maven 存储库,该存储库是使用我用来缓存 maven 存储库的工件设置的。按照依赖项说明,我发现了如何使用包含属性的存储库设置存储库所具有的范围。我想做的是让这个存储库用于一切,有没有办法配置它?

repositories:
    - artifactory:  
        type:       iBiblio
        artifact:   "http://myartifactoryhost.com/artifactory/libs-release"
        contains:
            - foo-bars -> *
4

2 回答 2

5

您可以将以下内容放入 $HOME/.ivy2/ivysettings.xml

这将使 ivy(并因此播放依赖解析)首先查看本地 maven 存储库,然后使用您的存储库管理器(类似于 .m2/settings.xml 中的 mirrorOf *)。

<ivy-settings>
    <!-- path to local maven repo and default maven layout -->
    <property name="local-maven2-pattern" value="${user.home}/.m2/repository/[organisation]/[module]/[revision]/[module]-[revision]" override="false" />
    <!-- set resolver chain as default -->
    <settings defaultResolver="main" />
    <!-- configure caches -->
    <caches repositoryCacheDir="${user.home}/.ivy2/cache">
        <!-- do not cache from local .m2-->
        <cache name="nocache" useOrigin="true" />
        <cache name="default" />
    </caches>
    <resolvers>
        <chain name="main">
            <!-- as this is not cached, even changing SNAPSHOT dependencies are resolved correctly -->
            <filesystem name="local-maven-2" m2compatible="true" local="true" cache="nocache">
                <ivy pattern="${local-maven2-pattern}.pom" />
                <artifact pattern="${local-maven2-pattern}(-[classifier]).[ext]" />
            </filesystem>
            <!-- use repository manager as proxy to maven-central (and alle other repositories)--> 
            <ibiblio name="repomanager" m2compatible="true"root="http://your.repomanager.intra/path/to/repo" cache="default"/>
        </chain>
    </resolvers>
</ivy-settings>
于 2011-10-14T13:59:50.717 回答
0

您可以使用本地存储库配置之类的东西并将所有内容放在那里。在您的情况下,本地存储库将指向您的工件主机。

请注意,您不能替换“播放”条目,尽管您可以将模块的本地副本添加到存储库以使用它们。

于 2011-10-13T10:45:38.617 回答