4

我想使用 tomcat7-maven-plugin 将war文件从我的本地机器部署到远程服务器,这是我到目前为止的配置:

<plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.0-beta-1</version>
                <configuration>
                  <server>pb</server>
                  <url>http://mydomain.com:8080/manager/html</url>
                </configuration>
            </plugin>

我需要更多配置吗?我用什么命令来部署?

4

1 回答 1

3

我必须将以下内容添加到settings.xml

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">


  <servers>
  <server>
        <id>pb</id>
        <username>myuser</username>
        <password>mypass</password>
  </server>
  </servers>

</settings>

并使用命令mvn tomcat7:deploy

于 2012-06-30T15:08:19.890 回答