作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这里完成 Maven newb,所以请原谅任何滥用的术语等。
我在 Maven 3 中构建了一个自定义插件(一个定义了 git rebase 目标的插件)。我能够:
mvn install
mvn edu.clemson.cs.rsrg:git-plugin:rebase
target
中有这个可爱的 git-plugin-XXX.jar 文件目录。
mvn build
之后)。
addjars-maven-plugin:add-jars
mvn build
期间给我这个错误:
[ERROR] Error resolving version for plugin 'edu.clemson.cs.rsrg:git-plugin' from the repositories [local (/home/hamptos/.m2/repository), central (http://repo.maven.apache.org/maven2)]: Plugin not found in any plugin repository
build-helper:attach-artifacts
mvn build
期间给我这个错误:
[ERROR] Failed to execute goal org.codehaus.mojo:build-helper-maven-plugin:1.7:attach-artifact (attach-artifacts) on project RESOLVE: Execution attach-artifacts of goal org.codehaus.mojo:build-helper-maven-plugin:1.7:attach-artifact failed: For artifact {edu.clemson.cs.rsrg:RESOLVE:12.09.01a:jar}: An attached artifact must have a different ID than its corresponding main artifact.
maven-install-plugin:install-file
mvn edu.clemson.cs.rsrg:git-plugin:rebase
这样的目标之一,此时它给了我这个错误:
[ERROR] Failed to execute goal edu.clemson.cs.rsrg:git-plugin:0.1.0a:rebase (default-cli) on project RESOLVE: Execution default-cli of goal edu.clemson.cs.rsrg:git-plugin:0.1.0a:rebase failed: Unable to load the mojo 'rebase' (or one of its required components) from the plugin 'edu.clemson.cs.rsrg:git-plugin:0.1.0a': com.google.inject.ProvisionException: Guice provision errors:
[ERROR]
[ERROR] 1) Error in ComponentFactory:ant-mojo
[ERROR] at ClassRealm[plugin>edu.clemson.cs.rsrg:git-plugin:0.1.0a, parent: sun.misc.Launcher$AppClassLoader@e776f7]
[ERROR] while locating org.apache.maven.plugin.Mojo annotated with @com.google.inject.name.Named(value=edu.clemson.cs.rsrg:git-plugin:0.1.0a:rebase)
最佳答案
你可能认为它是hacky,但它是maven方式。它需要部署到 Maven 仓库。
如果你把它保存在一个你可以证明拥有的 groupId 并且它是开源的,你可以 publish it to central
关于Maven 3 - 在 .jar 中分发自定义插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12375952/
我是一名优秀的程序员,十分优秀!