启动maven服务时 出现No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or


异常:

No goals have been specified for this 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,

原因:在pom.xm文件中配置tomcat插件时编译出现了问题

解决方法:在pom.xml文件中找到<build>标签,在里面加 上<defaultGoal>compile</defaultGoal>,代码如下:

<build>
  <defaultGoal>compile</defaultGoal>
	 <plugins>
	  <!-- 配置Tomcat插件 -->
	  <plugin>
	    <groupId>org.apache.tomcat.maven</groupId>
	    <artifactId>tomcat7-maven-plugin</artifactId>
		  <configuration>
			<path>/</path>
			<port>8080</port>
		  </configuration>
	  </plugin>
	</plugins>
 </build>

  

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM