Maven Tomcat使用配置文件部署插件

时间:2017-03-02 21:10:53

标签: maven tomcat gwt maven-tomcat-plugin gwt-maven-plugin

我正在尝试在项目pom.xml文件中使用配置文件来控制war文件到特定服务器的部署。例如,我有一个本地配置文件和一个开发服务器配置文件。以下是我设置个人资料的方式

<profiles>

    <profile>
        <id>local</id>
        <activation>
            <activeByDefault>true</activeByDefault>
            <property>
                <name>target</name>
                <value>local</value>
            </property>
        </activation>
        ...
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>tomcat7-maven-plugin</artifactId>
                    <version>2.2</version>
                    <configuration>
                        <url>http://10.16.21.60:8080/manager/text</url>
                        <server>localTomcat</server>
                        <path>/</path>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

    <profile>
        <id>dev</id>
        <activation>
            <property>
                <name>target</name>
                <value>dev</value>
            </property>
        </activation>
        ...
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>tomcat7-maven-plugin</artifactId>
                    <version>2.2</version>
                    <configuration>
                        <url>http://devserverurl:8080/manager/text</url>
                        <server>devTomcat</server>
                        <path>/</path>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

我正在打电话

mvn org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy

当我尝试此操作时,我可以看到,而不是尝试连接到我的配置10.16.21.60中提供的IP地址,而是尝试连接到localhost。我在本地devTomcat文件中使用用户名和密码定义了localTomcatsettings.xml

如果我再添加-X选项以获取更多信息,我可以在插件的调试输出中看到(强调添加

    [DEBUG] Configuring mojo org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy from plugin realm ClassRealm[plugin>org.apache.tomcat.maven:tomcat7-maven-plugin:2.2, parent: sun.misc.Launcher$AppClassLoader@5c647e05]
    [DEBUG] Configuring mojo 'org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy' with basic configurator -->
    [DEBUG]   (f) charset = ISO-8859-1
    [DEBUG]   (f) contextFile = ....
    [DEBUG]   (f) ignorePackaging = false
    [DEBUG]   (f) mode = war
    [DEBUG]   (f) packaging = war
    [DEBUG]   (f) path = ...
    [DEBUG]   (f) update = false
    [DEBUG]   (f) url = http://localhost:8080/manager/text
    [DEBUG]   (f) version = 2.2
    [DEBUG]   (f) warFile =  ...
    [DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@61874b9d
    [DEBUG] -- end configuration --
    [INFO] Deploying war to http://localhost:8080/...  
    [DEBUG] No server specified for authentication - using defaults

似乎没有遵守我的配置设置!我认为这样做的方式是,由于local配置文件被激活,它将使用该配置。

我也尝试过简单地在我的<build>部分中定义了插件,没有配置文件,效果相同。它总是尝试连接http://localhost:8080而不进行身份验证。

值得注意的是,我也在使用gwt-maven-plugin这个项目,我不知道这是否会干扰tomcat插件的配置。

1 个答案:

答案 0 :(得分:0)

好的,事实证明我使用了错误的groupID插件。它不是

<groupId>org.codehaus.mojo</groupId>

它是

<groupId>org.apache.tomcat.maven</groupId>

现在就像一个冠军!