在别的机子上创建一个maven工程,复制到本机上导入,出现pom.xml文件错误,提示错误如下:
Multiple annotations found at this line: - Execution default-testResources of goal org.apache.maven.plugins:maven-resources- plugin:2.4.3:testResources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.4.3 or one of its dependencies could not be resolved: Failed to collect dependencies for org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3 () (org.apache.maven.plugins:maven-resources- plugin:2.4.3:testResources:default-testResources:process-test-resources) - 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: Failed to collect dependencies for org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2 (): ArtifactDescriptorException: Failed to read artifact descriptor for org.apache.maven:maven-plugin-api:jar:2.0.6: ArtifactResolutionException: Failure to transfer org.apache.maven:maven-plugin-api:pom:2.0.6 from http://repo1.maven.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.apache.maven:maven-plugin-api:pom:2.0.6 from/to central (http:// repo1.maven.org/maven2): null to http://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin- api-2.0.6.pom - 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: Failed to collect dependencies for org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2 (): ArtifactDescriptorException: Failed to read artifact descriptor for org.apache.maven:maven-plugin-api:jar:2.0.6: ArtifactResolutionException: Failure to transfer org.apache.maven:maven-plugin-api:pom:2.0.6 from http://repo1.maven.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.apache.maven:maven-plugin-api:pom:2.0.6 from/to central (http:// repo1.maven.org/maven2): null to http://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin- api-2.0.6.pom - Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.4.3 or one of its dependencies could not be resolved: Failed to collect dependencies for org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3 () (org.apache.maven.plugins:maven-resources- plugin:2.4.3:resources:default-resources:process-resources) - Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin: 2.3.2:testCompile (execution: default-testCompile, phase: test-compile)
错误信息出现在pom头的project标签,project标签内容是:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
原:
这是由于缺少maven-resources-plugin-2.4.3.jar文件。这个文件是在{user.home}\.m2 \repository\org\apache\maven\plugins\maven-resources-plugin\下。 {user.home}是maven的配置路径,一般是我的文档,是window-preferences-MyEclipse- Maven4MyEclipse-User Setting里面的Local Repository。
解决方案
1、在pom.xml文件中加入maven-resources-plugin配置
<dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> </dependency>
2、在命令行下运行mvn install ,如果执行正确应该会在{user.home}\.m2\repository\org\apache\maven\plugins\maven- resources-plugin\下看到maven-resources-plugin-2.4.3.jar文件
3、刷新工程(右键工程选择刷新项)
4、刷新maven配置,右键工程节点,选择Maven4MyEclipse-Update Project Configuration
相关推荐
在Eclipse中安装Maven插件,可以方便开发者在IDE内进行Maven项目的操作,解决无法用Maven Pom editor打开pom.xml文件的问题。以下是对这个主题的详细说明: 1. **Maven Pom Editor**: Maven的pom.xml文件是项目...
3. **管理依赖**:Eclipse Maven插件会自动解析POM.xml中的依赖,并将所需库下载到本地仓库(默认为`~/.m2/repository`)。在离线模式下,已下载的依赖不会再次尝试下载。 4. **执行Maven构建**:通过右键点击项目,...
**Ma-ven E-clipse Integration 知识点详解** 在软件开发领域,Maven和Eclipse是两个极为重要的工具。Maven是一个项目管理和综合工具,主要用于构建、管理和部署Java项目,而Eclipse是一款广泛使用的集成开发环境...
标题中的"axis2-clipse-codegen-plugin-1.78"指的是Axis2 Eclipse代码生成插件的版本1.78。这个插件是为开发者设计的,主要用于简化基于Apache Axis2 Web服务的开发过程。Axis2是Apache软件基金会的一个开源项目,它...
Eclipse-PHP-Plugin.zip是一个专门为PHP开发者设计的Eclipse集成开发环境(IDE)插件。这个插件的目的是为了增强Eclipse原本的功能,使其能够更好地支持PHP编程语言,为开发者提供一个高效、便捷的开发环境。 在...
导入Maven项目时,m2eclipse会自动识别pom.xml文件,解析项目依赖并下载所需的库。 3. **构建与更新** 在Eclipse的工作区中,右键单击Maven项目,选择"Maven" -> "Update Project",m2eclipse会检查并更新项目的...
5. 使用Maven管理项目依赖,编写pom.xml文件,定义项目构建过程。 6. 配置DispatcherServlet和拦截器,处理HTTP请求并分发到对应的Controller。 7. 实现登录验证、权限控制等功能,提高应用的安全性。 这个项目适合...
1. 下载:首先,你需要下载mybatis-generator-eclipse插件对应的版本,如"org.mybatis.generator.eclipse.site-1.3.5.201609070108"。 2. 安装:在Eclipse中,选择“Help” -> “Install New Software”,然后在...
标题中的"axis2-1.6.2clipse插件"指的是Axis2的Eclipse插件版本1.6.2,这是专门为Apache Axis2框架开发的一个集成开发环境(IDE)插件,旨在帮助开发者在Eclipse中更方便地进行Web服务的开发、调试和部署。...
Eclipse Layout Kernel(或ELK)是图表的自动布局库,其做两件事:一是布局算法的集合,二是弥合布局算法与图表查看器和编辑器之间差距的基础设施。... 本工程一个基于Maven的Java工程,演示ELK自动布局的使用。
【标题】"e(fx)clipse3.6.zip" 是一个专门为JavaFX开发设计的Eclipse插件的压缩包。这个版本是3.6,它为开发者提供了在Eclipse集成开发环境中(IDE)进行JavaFX应用程序开发的支持。 【重要知识点一】:JavaFX ...
我发现 e(fx)clipse core.di 、 core.adapter 、 core.text非常好的 Eclipse 添加到 Eclipse 自己的框架中,然后决定将它们的代码core.text为一个自治包: com.andrearichiardi.eclipse.addons 。 要了解其功能,...
Eclipse的汉化包,可以用于Eclipse3.5.1,本人的Eclipse平台:eclipse-jee-galileo-SR1-win32+org.objectweb.lomboz-R-3.3-200710290621+struts-2.1.8.1-all+tomcatPluginV321+ org.eclipse.babel.nls_eclipse_zh_...
标题中的“eclipse一打开就会出现这个情况Loading descriptor for.......docx”问题,是指在启动Eclipse集成开发环境(IDE)时,系统加载项目时显示“Loading descriptor for [项目名]”。这通常是因为Eclipse在尝试...
Xml Clipse 是一个基于 Eclipse 开源平台的插件,专门设计用于XML文档的创建、查看和编辑。这个工具集成了强大的功能,使得开发者在处理XML文档时能够更加高效和便捷。作为开源软件,Xml Clipse 不仅允许用户免费...
- `plugin.xml`:这是插件的核心配置文件,定义了插件的元数据、功能和依赖关系。 - `icons`:通常包含插件使用的图标资源。 - `META-INF`:标准的Java存档文件目录,其中可能包含插件的清单文件和其他元数据。 - `...
eclipse-jee-2021-03-R-macosx-cocoa-x86_64.dmg
安装此插件通常涉及将.jar文件复制到Eclipse的plugins目录下,并重启Eclipse以使插件生效。此外,Readme.txt文件通常会包含安装指南、使用说明和可能遇到的问题解答,对于首次使用Jadclipse的开发者来说非常重要。 ...
2. 安装到Eclipse:解压后,将找到的`features`和`plugins`两个目录下的内容复制到MyEclipse的相应目录下。通常,这两个目录位于MyEclipse的安装路径中。 3. 启动MyEclipse:重启MyEclipse,打开“Window” -> ...
e(fx)clipse 是一款强大的 JavaFX 开发工具,能够帮助开发者在 Eclipse IDE 中构建 JavaFX 应用程序。它提供了丰富的功能,如代码补全、调试支持等。 **安装步骤** - **第一步:获取安装链接** - 访问官方网站 ...