用eclipse创建一个maven管理的项目,创建完成后pom.xml报错!!急求怎么解决!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用eclipse创建一个maven管理的项目,创建完成后pom.xml报错!!急求怎么解决!!相关的知识,希望对你有一定的参考价值。

Multiple annotations found at this line:
- Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:
2.3.2:compile (execution: default-compile, phase: compile)
- CoreException: Could not get the value for parameter compilerId for plugin execution default-compile:
PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:2.3.2 or one of its dependencies
could not be resolved: Failure to transfer org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1 from http://
repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update
interval of central has elapsed or updates are forced. Original error: Could not transfer artifact
org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1 from/to central (http://repo.maven.apache.org/maven2):
java.io.IOException: Remotely Closed [id: 0x5aaf85a3, /192.168.1.114:52094 :> repo.maven.apache.org/103.245.222.184:80]
- CoreException: Could not get the value for parameter compilerId for plugin execution default-testCompile:
PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:2.3.2 or one of its dependencies
could not be resolved: Failure to transfer org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1 from http://
repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update
interval of central has elapsed or updates are forced. Original error: Could not transfer artifact
org.codehaus.plexus:plexus-compiler-javac:jar:1.8.1 from/to central (http://repo.maven.apache.org/maven2):
java.io.IOException: Remotely Closed [id: 0x5aaf85a3, /192.168.1.114:52094 :> repo.maven.apache.org/103.245.222.184:80]
- Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:
2.3.2:testCompile (execution: default-testCompile, phase: test-compile)

参考技术A 有多种情况会导致这种报错,可以尝试以下5个方法:
1.项目右键:maven>install

2.项目右键:maven>clean
3.删除对应jar在仓库中的文件夹
4.在pom.xml中添加镜像地址:
<dependency>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
</dependency>
=========以上4个方法结束后,项目右键>maven>update project
5.如果下载成功,仍然报错:
项目右键:maven>update project,勾选Force Update of Snapshots/Releases
参考技术B 更新一下项目追问

怎么更新?

用eclipse创建maven项目


Maven是基于项目对象模型(POM),也可以进行模块化开发、并且是个强大的管理工具。本经验用eclipse来创建maven项目

步骤:

1、下载并正确安装eclipse

技术分享

 

2、在eclipse上成功安装maven插件

 

3、成功安装插件后,在eclipse上File/New/Other、选择Maven项目
技术分享

 

4、选择Maven Project、按next
技术分享

 

5、默认就行 、按next

技术分享
 

6、Artifact Id选择cocoon-22-archetype-webapp或者选择maven-archetype-quickstart、按next

技术分享
 
技术分享
 
7、填写Group Id(大项目名称)、Artifact Id(子项目名称)、Version*(版本号)、Package(包名,根据前两项自动生成)即可。

    groupId:所述的项目名称,由于有的项目并不是一个jar包构成的,而是由很多的jar包组成的。因此这个groupId就是整个项目的名称。

  artifactId:包的名称。

  version:版本号。

  packaging:包的类型,一般都是jar,也可以是war之类的。如果不填,默认就是jar。

  nameurl,一个是名称,一个是maven的地址。主要就是上面的几个参数。

技术分享

以上是关于用eclipse创建一个maven管理的项目,创建完成后pom.xml报错!!急求怎么解决!!的主要内容,如果未能解决你的问题,请参考以下文章

项目管理和构建十分钟教程,eclipse配置maven + 创建maven项目

selienium+java+eclipse创建maven工程

在eclipse中,用maven创建一个web项目工程

用Eclipse+Maven快速创建一个SpringBoot项目

用Eclipse创建一个Maven项目

eclipse 用maven创建web项目