m2eclipse+tomcat

来源:互联网 发布:线上抽签软件 编辑:程序博客网 时间:2024/06/06 02:34
maven goals: package tomcat6:redeploy

pom.xml

<plugin><groupId>org.apache.tomcat.maven</groupId><artifactId>tomcat6-maven-plugin</artifactId><version>2.1</version><configuration><url>http://localhost:8080/manager/html</url><server>localhost</server><path>/artfactory</path></configuration></plugin>

settings.xml

  <pluginGroups>    <pluginGroup>org.apache.tomcat.maven</pluginGroup>  </pluginGroups>
settings.xml

  <servers>      <server>      <id>localhost</id>      <username>admin</username>      <password>password</password>    </server>

tomcat-users.xml

<role rolename="manager"/><user username="admin" password="password" roles="manager"/>

原创粉丝点击