用jenkins生成文档:No plugin found for prefix 'javadoc' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories

最近,研究jenkins,使用jenkins权威指南书中的示例项目:gameoflife。在使其生成javadoc时,发生了生成失败,消息是

No plugin found for prefix ‘javadoc‘ in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories

  书的版本比较旧,我下的时最新稳定版:2.204.1。书中没有说明需要安装:Javadoc Plugin,其实是需要安装的,搜索就可以了。

有的说需要:

  1. 需要修改maven的配置文件settings.xml,完整路径是$MAVEN_HOME/conf/settings.xml;
  2. 在settings.xml文件内,找到pluginGroups节点,在里面增加两行,修改完成后效果如下:
<pluginGroups>
    <pluginGroup>XX.XXX.XXX</pluginGroup>
</pluginGroups>

  修改完毕保存退出

  实际上javadoc插件的groupId是:org.apache.maven.plugins,是不需要配置的。这个settings.xml也说了。  后来仔细查看了gameoflife的父pom,发现在maven-javadoc-plugin插件的groupId没有写,于是搜索所有的插件,加上:<groupId>org.apache.maven.plugins</groupId>。  生成正常了,但是gameoflife-web生成还是不成功,再研究。

用jenkins生成文档:No plugin found for prefix 'javadoc' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories

原文地址:https://www.cnblogs.com/feiyujun/p/12122159.html

时间: 2024-11-09 03:09:07

用jenkins生成文档:No plugin found for prefix 'javadoc' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories的相关文章

No plugin found for prefix &#39;jetty&#39; in the current project and in the plugin groups

现在Jetty的版本已经到9了,也早已经在Eclipse的门下了.所以有很多groupId,比如:org.eclipse.jetty.org.mortbay.jetty.这些都可以用的哦. 我在使用MyEclipse结合maven操作jetty作为开发的服务器,这开开发比较方便. 当我运行命令: jetty:run 出现: [ERROR] No plugin found for prefix 'jetty' in the current project and in the plugin gro

Maven命令行创建web项目,并部署到jobss当中(解决No plugin found for prefix &#39;jboss-as&#39; in the current project and in the plugin groups [org.apache.maven.plugins,问题)

首件创建项目:此处可参照:http://maven.apache.org/guides/mini/guide-webapp.html mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-webapp -DarchetypeArtifactId=maven-archetype-webapp 将目录切换至my-webapp下,编译和打包: mvn clean package 此时,启动jboss服务器(我的是jboss

No plugin found for prefix &#39;jetty&#39; in the current project and in the plugin groups [org.apache.mave

这是我的项目: 运行的时候错误: [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.903s [INFO] Finished at: Thu Aug 13 11:33:22 CST 2015 [INFO] Final Memory: 7M/121M [INFO] ---------------------

No plugin found for prefix &#39;jetty&#39; in the current project and in the plugin groups 【转】

在maven进行jetty的调试中出现错误: [plain] view plaincopyprint? [ERROR] No plugin found for prefix 'jetty' in the current project and in the plu gin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repo sitories [local (C:\Documents and Se

No plugin found for prefix &#39;jetty&#39; in the current project and in the plugin groups搭建mvan时配置jetty

在maven进行jetty的调试中出现错误: [plain] view plaincopyprint? [ERROR] No plugin found for prefix 'jetty' in the current project and in the plu gin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repo sitories [local (C:\Documents and Se

Maven出现错误No plugin found for prefix &#39;jetty&#39; in the current project and in the plugin groups的问题解决

只需在maven的setting.xml文件上加入如下节点: <pluginGroups> <pluginGroup>org.mortbay.jetty</pluginGroup> </pluginGroups> setting.xml文件放在maven运行文件夹的conf文件夹下. 如果不想像上面增加额外的节点,可以通过以下的命令启动: mvn org.mortbay.jetty:maven-jetty-plugin:run Maven出现错误No plu

No plugin found for prefix &#39;war&#39; in the current project and in the plugin groups

解决办法: 在pom里面添加 : <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </dependency>以上是网上普遍流行的解决方法,如果修改之后依旧不行,可以尝试如下方法:查看此目录下的文件,一般就是

Maven出现错误No plugin found for prefix &#39;jetty&#39; in the current

Maven出现错误No plugin found for prefix 'jetty' in the current project and in the plugin groups的问题解决 只需在maven的setting.xml文件上加入如下节点: <pluginGroups>       <pluginGroup>org.mortbay.jetty</pluginGroup>   </pluginGroups> Maven出现错误No plugin

jenkins运行报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project lego

起因:我要对4000条数据循环请求搜索接口,校验返回值,然后在Jenkins上面运行的时候报错:maven-surefire-plugin执行test失败,但是运行70条数据的时候就不会报错,而且程序本身也没有错误,猜测应该是数据量大导致的.通过查阅网上的资料说是要设置surefire插件的jvm 参数. Jenkins运行报下面的错误: Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:te