Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:redeploy (default-cli) on project h

1.设置在tomcat安装目录的下配置文件tomcat-users.xml添加





2.设置maven中setting

  
			healthpad  
			admin  
			password  
	    

3.在maven中pom.xml文件添加


				org.codehaus.mojo
				tomcat-maven-plugin
				1.1
				
					http://localhost:8080/manager/text
					healthpad
					admin
					password
				
			


注意:http://localhost:8080/manager/text ,还有其它写法http://localhost:8080/manager/html 或http://localhost:8080/manager

还没细细分析这个三个网址有什么不同。

选择pom.xml   右键工程-》run as –》Maven build…   

Goals栏 输入:package tomcat:redeploy

 

你可能感兴趣的:(Maven)