11

我的问题已在此线程中得到解决,但解释不清楚。

我的 pom.xml 文件之一中有这个构建定义:

<build>
    <finalName>${my.project}</finalName>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.0</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
    </plugins>
    <extensions>
        <extension>
            <groupId>org.kuali.maven.wagons</groupId>
            <artifactId>maven-s3-wagon</artifactId>
            <version>1.1.19</version>
        </extension>
    </extensions>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
            <includes>
                <include>**/settings.properties</include>
            </includes>
        </resource>
    </resources>
</build>

请注意,我使用的是 maven-s3-wagon 扩展。接下来,我想要 2 个不同的配置文件,每个配置文件都有自己的设置、插件和扩展,但 maven 不允许在配置文件下使用扩展标签。

当我尝试使用配置文件时:

<profiles>
    <profile>
        <id>local-build</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <build>
            <finalName>${my.project}</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.0</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>
            </plugins>
            <extensions>
                <extension>
                    <groupId>org.kuali.maven.wagons</groupId>
                    <artifactId>maven-s3-wagon</artifactId>
                    <version>1.1.19</version>
                </extension>
            </extensions>
            <resources>
                <resource>
                    <directory>src/main/resources</directory>
                    <filtering>true</filtering>
                    <includes>
                        <include>**/settings.properties</include>
                    </includes>
                </resource>
            </resources>
        </build>
    </profile>
</profiles>

我的 pom 中出现错误:

cvc-complex-type.2.4.a: Invalid content was found starting with element 'extensions'. One of '{"http://maven.apache.org/POM/4.0.0":defaultGoal, "http://maven.apache.org/POM/
 4.0.0":resources, "http://maven.apache.org/POM/4.0.0":testResources, "http://maven.apache.org/POM/4.0.0":directory, "http://maven.apache.org/POM/4.0.0":filters, "http://
 maven.apache.org/POM/4.0.0":pluginManagement}' is expected.

问题所以使用扩展标签意味着我不能使用配置文件?如何通过配置文件使用或更改构建扩展?

4

3 回答 3

8

事实上,官方的Maven POM 参考并不清楚extensions作为 Maven 配置文件的一部分的可能用法,因为它声明您可以在build其中包含一个元素,但不是该build部分的内容。

但是,官方的Maven 模型有效地过滤并提供了build您可以在一个部分中实际使用的profile部分。而且确实extensions 不存在

但是,什么是 Maven 扩展?构建/生命周期增强,而且(本质上):添加到 Maven 构建的运行时类路径的库,它参与构建,但它没有与最终工件打包。

因此,在这种情况下(如果您需要在配置文件中有扩展名或有配置文件来更改/添加扩展名),您可以使用以下技巧:

  • 有一个无害的扩展作为你的构建的默认扩展(其中无害的意思是任何可能成为你构建类路径的一部分并且基本上不会影响它的库)
  • 具有定义此扩展的GAV坐标( G roupId、ArtifactId、Version )的属性
  • 具有使用所需(有用)扩展名覆盖这些属性的配置文件

例如,给定以下示例 POM:

<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sample</groupId>
    <artifactId>project</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <extension.groupId>junit</extension.groupId>
        <extension.artifactId>junit</extension.artifactId>
        <extension.version>4.11</extension.version>
    </properties>

    <build>
        <extensions>
            <extension>
                <groupId>${extension.groupId}</groupId>
                <artifactId>${extension.artifactId}</artifactId>
                <version>${extension.version}</version>
            </extension>
        </extensions>
    </build>

    <profiles>
        <profile>
            <id>customize-extension</id>
            <properties>
                <extension.groupId>junit</extension.groupId>
                <extension.artifactId>junit</extension.artifactId>
                <extension.version>4.12</extension.version>
            </properties>
        </profile>
    </profiles>

</project>

默认构建(未customize-extension激活配置文件)将使用默认定义properties并添加junit为构建扩展:这是无害的(尽管它可能会与您的构建的另一个版本产生冲突junit,因此请确保使用相同版本的使用甚至更无害的库)。

您可以检查 Maven 是否会通过运行真正的第一个构建阶段来获取它,只是在我们的案例中检查信息,并启用调试标志:

mvn initialize -X

并作为构建日志的一部分进行检查:

[DEBUG] Populating class realm extension>junit:junit:4.11   
[DEBUG]   Included: junit:junit:jar:4.11   

现在让我们使用我们的技巧:让我们通过配置文件添加(更改)构建扩展:

mvn initialize -X -Pcustomize-extension

作为我们构建日志的一部分,我们将拥有:

[DEBUG] Populating class realm extension>junit:junit:4.12   
[DEBUG]   Included: junit:junit:jar:4.12   

答对了。Maven 选择了一个不同的扩展(在本例中是一个不同的版本,the 4.12),我们成功地通过配置文件更改(或实际上添加了一个有意义的)构建扩展。

于 2016-03-27T21:41:07.787 回答
0

只是一个疯狂的想法:使用模块

像这样定义父pom级:

<groupId>org.example</groupId>
<artifactId>my-parent</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<profiles>
    <profile>
        <id>use-pom1</id>
        <modules>
            <module>pom1</module>
        </modules>
    </profile>
    <profile>
        <id>use-pom2</id>
        <modules>
            <module>pom2</module>
        </modules>
    </profile>
</profiles>

pom1在和上定义所需的扩展pom2

于 2013-07-24T03:29:36.820 回答
0

我认为解决方案在这里http://maven.apache.org/guides/mini/guide-using-extensions.html

定义一个构建部分,其中定义了扩展,然后在配置文件中将属性设置为 true(如下面所示的第二个配置文件)

<build>
    <extensions>
        <extension>
            <groupId>org.apache.maven.wagon</groupId>
            <artifactId>wagon-ssh</artifactId>
            <version>2.9</version>
        </extension>
    </extensions>
</build>

<profiles>
    <profile>
        <id>create-default</id>
        <activation>
            <activeByDefault>true</activeByDefault>
            <property>
                <name>build</name>
                <value>full</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>

    <profile>
        <id>create-core</id>
        <activation>
            <property>
                <name>build</name>
                <value>full</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-jar-plugin</artifactId>
                    <extensions>true</extensions>
                    <version>2.6</version>
                    <configuration>
                        <finalName>import-station-core-${project.version}</finalName>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-jar</id>
                            <phase>package</phase>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>
于 2016-12-09T13:12:37.780 回答