0

对于我的构建过程,我需要两个自定义 maven 插件(请参见此处)。使用mvn install.

但是,我需要让团队中的其他开发人员可以访问它并进行集成测试。

我注意到您可以在 github 上设置一个轻量级的 maven 存储库,这就是我现在所做的:https ://github.com/rweng/mvn-repo

这适用于像 ch.yax.yocto.yocto-server 这样的普通依赖项,但是,它对我的​​插件失败并显示消息

[WARNING] The POM for com.arcanio.maven.plugin:velocity:jar:0.1-SNAPSHOT is missing, no dependency information available**
[ERROR] Plugin com.arcanio.maven.plugin:velocity:0.1-SNAPSHOT or one of its dependencies could not be resolved: Failed to read artifact descriptor for com.arcanio.maven.plugin:velocity:jar:0.1-SNAPSHOT: Could not find artifact com.arcanio.maven.plugin:velocity:pom:0.1-SNAPSHOT -> [Help 1]

我尝试通过 替换我的存储库部分中的 github url file:///,尽管我怀疑问题出在此处。我也怀疑这是代理问题,因为许多用户报告了相同的错误。

mvn install 是否有可能部署 s.th。不同于我的部署命令

mvn -DaltDeploymentRepository=snapshot-repo::default::file:/Users/robin/Code/mvn-repo/ clean deploy

提前感谢任何提示如何解决这个问题。

编辑

我刚刚将插件从本地存储库移动到 github 存储库,并注意到以下更改。

 D com/arcanio/maven/plugin/maven-metadata.xml
 D com/arcanio/maven/plugin/maven-metadata.xml.md5
 D com/arcanio/maven/plugin/maven-metadata.xml.sha1
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/maven-metadata.xml
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/maven-metadata.xml.md5
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/maven-metadata.xml.sha1
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.jar
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.jar.md5
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.jar.sha1
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.pom
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.pom.md5
 D com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-20130206.084855-1.pom.sha1
 D com/arcanio/maven/plugin/velocity/maven-metadata.xml
 D com/arcanio/maven/plugin/velocity/maven-metadata.xml.md5
 D com/arcanio/maven/plugin/velocity/maven-metadata.xml.sha1
?? com/arcanio/maven/plugin/maven-metadata-local.xml
?? com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/_maven.repositories
?? com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/maven-metadata-local.xml
?? com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-SNAPSHOT.jar
?? com/arcanio/maven/plugin/velocity/0.1-SNAPSHOT/velocity-0.1-SNAPSHOT.pom
?? com/arcanio/maven/plugin/velocity/maven-metadata-local.xml

所以mvn install确实会产生不同的东西。有谁知道为什么?我认为与本地存储库mvn install基本相同。mvn deploy

编辑

使用mvn -DuniqueVersion=false修复了独特的版本。见这里

编辑

uniqueVersion=false 不再适用于 maven 3。所以问题保持不变,在存储库中找不到时间戳版本。我想我可能会错过一个 artifactid-snapshot pom。

解决方案

解决方案在这里找到:

必须将存储库添加为 pluginRepository:

<pluginRepositories>
    <pluginRepository>
        <id>rweng-plugins</id>
        <url>https://github.com/rweng/mvn-repo/raw/master</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </pluginRepository>
</pluginRepositories>
4

1 回答 1

1

此类事情的最佳解决方案是在您的公司中安装存储库管理器。

于 2013-02-06T11:17:47.020 回答