0

我在父 POM 中有以下个人资料:

<profile>
    <id>myprofile</id>
    <activation>
       <activeByDefault>false</activeByDefault>
    </activation>
    <modules>
        <module>module1</module>
        <module>module2</module>
    </modules>
</profile>

现在在我的模块 2 的子 POM 中,我有以下配置文件:

<profiles>
    <profile>
        <id>module2profile</id>
        <build>
            <finalName>mywar</finalName>
            <plugins>
            ....
            </plugins>
        </build>
    </profile>
</profiles>

我的要求是从父 POM 配置文件中,而不是引用“module2”,我想引用配置文件“module2profile”。我需要这个,因为在我的 module2 中,我创建了 2 个不同的 war 文件(一个是正常创建的,另一个是由“module2profile”创建的)。

4

0 回答 0