2

我试图在我的项目 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

当我尝试这个时,我可以看到它不是尝试连接到我的配置中提供的 IP 地址10.16.21.60,而是尝试连接到localhost. 我两者都有devTomcat,并localTomcat在我的本地settings.xml文件中定义了用户名和密码。

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

    [调试] 配置 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]
    [调试] 使用基本配置器配置 mojo 'org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy' -->
    [调试] (f) 字符集 = ISO-8859-1
    [调试] (f) contextFile = ....
    [调试] (f) ignorePackaging = false
    [调试] (f) 模式 = 战争
    [DEBUG] (f) 包装 = 战争
    [调试] (f) 路径 = ...
    [调试] (f) 更新 = 假
    [调试] (f) url = http://localhost:8080/manager/text
    [调试] (f) 版本 = 2.2
    [调试] (f) 战争文件 = ...
    [调试] (f) 设置 = org.apache.maven.execution.SettingsAdapter@61874b9d
    [DEBUG] -- 结束配置 --
    [INFO] 部署战争到 http://localhost:8080/...  
    [DEBUG] 未指定用于身份验证的服务器 - 使用默认值

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

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

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

4

1 回答 1

0

Ok, turns out I was using the wrong groupID for the plugin. It isn't

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

it is

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

Works like a champ now!

于 2017-03-02T21:59:45.363 回答