0

这个周末我一直在研究Nexus 指南,并且我已经完成了所有设置,以至于我可以将快照发布到我的本地 nexus 安装。

我似乎无法弄清楚如何让 m2eclipse 查看快照并将其作为“添加依赖项”搜索面板中的选项提供。我怎么做?谢谢!

如果有任何用处,我的 settings.xml 如下:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository />
    <interactiveMode />
    <usePluginRegistry />
    <offline />
    <pluginGroups />
    <servers>
        <server>
            <id>localSnap</id>
            <username>deployment</username>
            <password>*****</password>
        </server>
    </servers>
    <mirrors>
        <mirror>
            <!--This sends everything else to /public -->
            <id>nexus</id>
            <mirrorOf>*</mirrorOf>
            <url>http://localhost:8080/nexus/content/groups/public</url>
        </mirror>
    </mirrors>
    <profiles>
        <profile>
            <id>nexus</id>
            <!--Enable snapshots for the built in central repo to direct -->
            <!--all requests to nexus via the mirror -->
            <repositories>
                <repository>
                    <id>central</id>
                    <url>http://central</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>central</id>
                    <url>http://central</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>
    <activeProfiles>
        <!--make the profile active all the time -->
        <activeProfile>nexus</activeProfile>
    </activeProfiles>

</settings>
4

1 回答 1

3

我现在有了答案。您必须设置 nexus 才能发布索引。http://www.sonatype.com/people/2009/09/nexus-scheduled-tasks ...设置调度任务为m2eclipse等客户端发布索引。但是您必须等到 nexus 中的计划任务部分出现 WAITING 状态。eclipse重启后它必须工作。问候, 雅库布

顺便说一句:您的代理存储库必须具有“下载远程索引 - 真”并且 nexus 必须能够搜索远程索引......但我想你知道

于 2010-06-12T21:44:38.750 回答