如何在依赖模块中激活Maven配置文件?

时间:2010-08-20 15:19:39

标签: maven-2

假设我有一个模块A:jar,其依赖项的运行时和编译集取决于JDK版本。在我的示例中,我有pre-jdk6-profile JAXB API:在JDK 1.6.0之前,我需要包含jaxb-api-nnn.jar作为编译依赖项。此个人资料已放置到A.pom

我还有模块B:war,它取决于A:jar。我希望能够在构建服务器上激活此配置文件以构建JDK 1.5.x可交付项。当我在激活给定配置文件的情况下执行Maven时,我收到消息:

mvn -Ppre-jdk6-profile -o install
[WARNING]
        Profile with id: 'pre-jdk6-profile' has not been activated.
结果jaxb-api-nnn.jar中缺少

B.war。但是,如果我从父pom.xml进行构建时激活此配置文件,则一切正常。这意味着配置文件不是从依赖项继承的,并且父多模块pom.xml能够正确构建所有内容,因为它似乎所有配置文件都在reactor中合并。

将配置文件转移到父pom会使事情变得更糟,因为依赖项将应用于所有其他项目(例如C:ear)。对于此任务是否有很好的解决方案,即,如果任何模块A依赖于模块B,那么由配置文件激活的所有编译和运行时依赖关系是否都能正确处理?

项目A:jar中的个人资料如下:

<project ...>
    <artifactId>A</artifactId>
    <packaging>jar</packaging>
    ...
    <parent>
        <artifactId>P</artifactId>
        ...
    </parent>

    <profiles>
        <profile>
            <id>pre-jdk6-profile</id>

            <activation>
                <jdk>(,1.6.0)</jdk>
            </activation>

            <dependencies>
                <dependency>
                    <groupId>javax.xml.ws</groupId>
                    <artifactId>jaxws-api</artifactId>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
...
</project>

2 个答案:

答案 0 :(得分:11)

a)在多模块构建中,您应始终从顶部pom构建,而不是从单个模块构建。如果您只想构建一个模块,请使用高级反应器选项(请参阅mvn --help),如下所示:

mvn -pl mymodule

b)在父pom中定义并激活配置文件,但在子pom中添加配置。

父pom.xml

<profiles>
    <profile>
         <id>pre-jdk-6</id>
         <activation>
            <jdk>(,1.6.0)</jdk>
         </activation>
    </profile>
</profiles>

child pom.xml

<profiles>
    <profile>
        <id>pre-jdk-6</id>

        <dependencies>
            <dependency>
                <groupId>javax.xml.ws</groupId>
                <artifactId>jaxws-api</artifactId>
            </dependency>
        </dependencies>
    </profile>
</profiles>

答案 1 :(得分:4)

事后的几个注意事项:

  1. 当您使用-P profName时,它会激活名为&#39; profName&#39;
  2. 的个人资料
  3. 之后,它会停用所有标记为<activation>的个人资料。它们是否被java版本激活(如示例)或默认值或env值或其他任何值都无关紧要。
  4. 这意味着-P会导致任何其他激活的配置文件被停用。
  5. 解决方案:使用<activation><jdk>...</jdk></activation>或使用-P但不要同时使用两者。