8

我正在使用 Eclipse Helios,Tomcat Server 7。我已经使用 Maven 构建了我的项目。当我尝试构建我的项目时,我在 Eclipse 中收到以下错误。

 [INFO] Scanning for projects...
 [INFO]                                                                         
 [INFO] ------------------------------------------------------------------------
 [INFO] Building encore Maven Webapp 0.0.1-SNAPSHOT
 [INFO] ------------------------------------------------------------------------
 [INFO] ------------------------------------------------------------------------
 [INFO] BUILD FAILURE
 [INFO] ------------------------------------------------------------------------
 [INFO] Total time: 0.095s
 [INFO] Finished at: Tue Nov 06 18:17:55 IST 2012
 [INFO] Final Memory: 2M/36M
 [INFO] ------------------------------------------------------------------------
 [ERROR] Unknown lifecycle phase "build". You must specify a valid lifecycle phase or    a    goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [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/LifecyclePhaseNotFoundException

请让我知道我的代码有什么问题,并请指出正确的方向。我需要尽快弄清楚。

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.encore</groupId>
<artifactId>encore</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>encore Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
  <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
   </dependency>
   <dependency>
    <groupId>org.codehaus.mojo</groupId>
  <artifactId>tomcat-maven-plugin</artifactId>
  <version>1.1</version>      
</dependency>
 <dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-eclipse-plugin</artifactId>
  <version>2.9</version>     
</dependency>
</dependencies>

<build>
<finalName>encore</finalName>   
<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>tomcat-maven-plugin</artifactId>
         <version>2.9</version>  
        <configuration>
                 <server>mytomcatserver</server>
                 <path>/encore</path>
                 <url>http://localhost:8080</url>
                 <username>admin</username>
                 <password>admin</password>
        </configuration>
    </plugin>
</plugins>
</build>
 </project>

这是我的 pom.xml。我正在尝试将我的应用程序作为 Run as-> mvn build from eclipse 运行。

4

7 回答 7

12

听起来您在尝试从 Eclipse 构建时不小心设置了错误的目标。像这样编辑您的 Maven“运行为..”设置:

在此处输入图像描述

请注意clean install,它将运行 Maven 命令来清理您的构建并执行完整构建并安装到本地存储库中。

于 2012-11-06T15:31:01.513 回答
9

尝试mvn install代替mvn build. build不是 Maven 的有效选项。您可以在上面的错误消息中找到有效选项列表。

如果您只想编译源代码,请尝试,mvn compile但是当您的项目中有多个pom.xml文件时,这通常会产生不正确的结果。

于 2012-11-06T15:24:55.670 回答
1

您应该构建:安装,而不是构建:mvn install,而不是从 mvn ...

于 2013-09-20T11:39:06.487 回答
1

所有IDE(Eclipse,Intellij等)在maven构建方面都有一些问题,而不是使用捆绑的maven组件,而是使用命令行maven。在命令行(windows 或 linux 控制台无关紧要。) mvn clean,然后 mvn install 将解决您的问题。命令行使用可以改变你对 maven 的看法。

于 2015-04-27T10:49:52.397 回答
1

当您运行“run as”“Maven build”并且现在无法更改它时,很可能您在配置中设置了错误的目标。

右键单击项目-> 运行方式-> 运行配置。

一张图来说明:https ://i.stack.imgur.com/Ry65K.png

这将带回您第一次构建时的窗口,然后您可以按照上面更有经验的贡献者的说明进行操作。

希望这可以帮助。

于 2018-02-17T19:45:46.043 回答
0

错误:org.apache.maven.lifecycle。LifecyclePhaseNotFoundException 有关错误和可能的解决方案的更多信息,请阅读以下文章: [错误] [帮助 1] http://cwiki.apache.org/confluence/display/MAVEN/ LifecyclePhaseNotFoundException

解决方案:未知生命周期阶段或错误目标示例:首先我使用“clean package tea-container-test:tomcat-test -P“XXX”-e”作为目标,然后我将目标更改为“test -P XXX”,然后它完美地工作,所以请检查,你的目标是对还是错。“创建一个新异常以指示指定的生命周期阶段未由任何已知的生命周期定义”。

于 2015-04-27T10:33:35.617 回答
0

我也有同样的问题,卸载 GIT bash 并重新安装。这将解决任何 EnvVar 问题。

如果仍未解决,请检查您的命令。从记事本复制并粘贴您的命令,这应该可以工作

于 2017-04-24T08:16:37.600 回答