使用Maven和Eclipse运行Tomcat - 未知的生命周期阶段

时间:2012-11-06 13:03:34

标签: eclipse maven tomcat7

我正在使用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-&gt;运行我的应用程序mvn来自eclipse。

7 个答案:

答案 0 :(得分:12)

听起来你在尝试使用Eclipse构建时不小心设置了错误的目标。编辑你的Maven“Run as ..”设置如下:

enter image description here

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

答案 1 :(得分:7)

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

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

答案 2 :(得分:1)

你应该构建:install,而不是build:mvn install,不能以mvn ...

开头

答案 3 :(得分:1)

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

答案 4 :(得分: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 “作为目标,然后我将目标改为”测试-P XXX“,然后它完美运行,所以请检查,你的目标是对还是错。 “创建一个新的异常,以指示任何已​​知生命周期都未定义指定的生命周期阶段。”

答案 5 :(得分:0)

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

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

答案 6 :(得分:0)

当您运行&#34;运行为&#34时,最有可能在配置中设置不正确的目标。 &#34; Maven build&#34;现在无法改变它。

右键点击该项目 - &gt;以 - &gt;运行运行配置。

图片说明:https://i.stack.imgur.com/Ry65K.png

这将重新启动您在第一次构建时首次拥有的窗口,然后您可以按照上面更有经验的贡献者的说明进行操作。

希望这会有所帮助。