`

mvn eclipse:eclipse fails on trunk

 
阅读更多

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse (default-cli) on project hadoop-common: Request to merge when 'filtering' is not identical. Original=resource src/main/resources: output=target/classes, include=[], exclude=[common-version-info.properties|**/*.java], test=false, filtering=false, merging with=resource src/main/resources: output=target/classes, include=[common-version-info.properties], exclude=[**/*.java], test=false, filtering=true -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :hadoop-common

 

 

 

 

 

 

 

 

 

 

执行如下命令

mvn org.apache.maven.plugins:maven-eclipse-plugin:2.6:eclipse -DskipTests

分享到:
评论

相关推荐

    mvn install:install-file -Dfile

    mvn install单独jar到仓库使用方法举例

    mvn常用命令

    10. 生成Eclipse项目:`mvn eclipse:eclipse` 11. 生成Idea项目:`mvn idea:idea` 组合使用goal命令 12. 只打包不测试:`mvn -Dtest package` 13. 编译测试的内容:`mvn test-compile` 14. 只打jar包:`mvn jar:...

    maven学习与命令

    - `mvn eclipse:eclipse`:生成Eclipse项目所需的`.project`和`.classpath`文件。 ##### 11. 生成IntelliJ IDEA项目文件 ```sh mvn idea:idea ``` **解释:** - `mvn idea:idea`:生成IntelliJ IDEA项目所需的`.iml...

    mvn常用命令行

    在实际开发中,开发者通常会在版本控制系统(如 CVS 或 SVN)中获取代码,然后使用 `mvn eclipse:eclipse` 生成 Eclipse 项目,接着导入到 Eclipse 开发环境中。对于代码的改动,可以通过 `mvn compile` 或 `mvn ...

    maven常用命令

    11. 生成 Eclipse 项目:`mvn eclipse:eclipse` 12. 生成 Idea 项目:`mvn idea:idea` 组合使用 Goal 命令 13. 组合使用 goal 命令,如只打包不测试:`mvn -Dtest package` 14. 编译测试的内容:`mvn test-compile...

    Maven 常用命令都准备好给你了.docx

    例如,当你从版本控制系统检出代码后,可以运行`mvn eclipse:eclipse`生成Eclipse项目,然后使用`mvn compile`或`mvn test`进行编译和测试。如果需要部署项目,可以使用`mvn package`打包,然后使用`mvn install`或`...

    常用maven命令2

    - 生成 Eclipse 项目配置:`mvn eclipse:eclipse` - 生成 IntelliJ IDEA 项目配置:`mvn idea:idea` - 安装项目到本地仓库:`mvn install` - 发布项目到远程仓库:`mvn deploy` - 处理并发布包到集成测试环境:...

    Maven2_Struts2.0打包实例源码

    * 然后建一个Ecllipse项目:my-webapp&gt;mvn eclipse:eclipse * 先写jsp文件 和 web.xml文件 * 接着在src/main/java下写自已的java class文件 * 写pom.xml方件,最关键是添加dependencies * mvn package打包 * ...

    maven3.2.3+eclipse4.4+JDK1.8环境搭建

    在已经安装好JDK和Maven的Eclipse中,可以通过“Install New Software”选项安装Maven插件,或者直接使用命令`mvn eclipse:eclipse`生成Eclipse项目文件,然后导入Eclipse进行开发。 2. **Eclipse的Maven配置** ...

    maven 常用命令集合

    示例:mvn eclipse:eclipse -Dwtpversion=1.0 这将生成一个 Eclipse 项目文件,版本为 1.0。 Maven 的项目骨架类型有多种,包括: * maven-archetype-archetype * maven-archetype-j2ee-simple * maven-archetype...

    Mvn 使用文档

    12. `mvn eclipse:eclipse`: 自动配置 Eclipse 项目。 13. `mvn deploy:deploy-file`: 将本地文件部署到远程仓库。 14. `mvn install:install-file`: 安装本地文件到本地 Maven 仓库,可用于项目依赖。 ### Maven ...

    maven基本命令详解

    - 生成 Eclipse 所需的配置文件:`mvn eclipse:eclipse` - 清除 `target` 目录内容:`mvn eclipse:clean` 通过这些命令,可以确保 Eclipse 正确地解析 Maven 项目结构并提供相应的开发支持。 #### 4. Web 项目创建...

    Maven构建项目文档

    - `mvn eclipse:eclipse`: 将 Maven 项目转换为 Eclipse 工程,生成 `.project` 和 `.classpath` 文件。 - `mvn eclipse:myeclipse`: 除了基本的 Eclipse 属性,还会添加 Web 项目所需的属性。 - `mvn eclipse:clean...

    mvn 常用命令手册mvn开发必备

    这个命令类似于`mvn eclipse:eclipse`,但是它还指定了WTP(Web Tools Platform)的版本号。这样做的目的是为了确保项目能够在具有特定WTP版本的Eclipse环境中正确加载。 #### 12. `mvn -Dwtpversion=1.0 eclipse:...

    spring-restful-service:Spring Restful 服务展示

    mvn eclipse:clean mvn Eclipse:Eclipse 然后将maven项目导入Eclipse,发布到Tomcat服务器。 上下文路径默认为 TaxService。 注意:通过运行 mvn eclipse:eclipse 创建的构建路径和部署程序集使用 jar 文件的绝对...

    Maven 命令Maven 命令Maven 命令

    - `mvn eclipse:eclipse`:将Maven项目转换为Eclipse工程,使Eclipse能够识别Maven的构建配置。 4. **清理**: - `mvn clean`:清除目标目录(`target`)中的所有构建产物,包括编译后的类、测试结果等。 5. **...

    window安装流程

    - **生成Eclipse项目文件**: `mvn eclipse:eclipse` - **查看插件描述**: `mvn help:describe` - **运行Jetty服务器**: `mvn jetty:run` - **运行Tomcat服务器**: `mvn tomcat:run` - **依赖分析**: `mvn dependency...

    jersey2-sample:教程显示Jersey2的锅炉板代码

    教程Jersey2(Servlet 3.0)样板代码 ... Eclipse: mvn eclipse:eclipse IntelliJ: mvn idea:idea 使用IDE:Eclipse / IntelliJ / Netbeans 新Maven项目 原型:maven-archetype-webapp GroupId:com.techobyte

Global site tag (gtag.js) - Google Analytics