54

如果使用特定配置文件运行,我正在寻找一种禁用插件执行的方法。

如果选择了配置文件,这与运行插件相反。

我的用例:我的 Maven 构建有很多插件,但是在我的开发机器上运行时,我想跳过其中的一些。我不想在本地评论这些插件,而是希望能够使用“dev”配置文件运行构建。插件将继续在我的持续构建中运行。

想法?

4

3 回答 3

105

当特定配置文件处于活动状态时,有一种巧妙的方法可以禁用插件执行。

首先,您需要为插件执行添加一个标识符,例如:

<build>
    <plugins>
        <!-- (...) -->
        <plugin>
            <groupId>nl.geodienstencentrum.maven</groupId>
            <artifactId>sass-maven-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>styles-compilation</id> <!-- plugin execution identifier -->
                    <phase>generate-resources</phase>
                    <goals>
                        <goal>update-stylesheets</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

然后您需要定义一个不会执行此插件的配置文件:

<profiles>
    <profile>
        <id>no-sass</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>nl.geodienstencentrum.maven</groupId>
                    <artifactId>sass-maven-plugin</artifactId>
                    <version>2.1</version>
                    <executions>
                        <execution>
                            <id>styles-compilation</id> <!-- here there must be the same identifier as defined in <build><plugins> section -->
                            <phase>none</phase> <!-- this disables plugin -->
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

现在,如果您运行标准 Maven 构建:

mvn clean package

sass-maven-plugin将被执行,但在运行时:

mvn clean package -P no-sass

sass-maven-plugin不会被执行。

于 2016-09-18T14:23:42.333 回答
23
  • 定义你的 pom,这样它就只有你在开发模式下需要的插件
  • 定义开发配置文件
  • 定义一个包含您想要/需要的所有插件的生产配置文件
  • 将生产配置文件定义为默认值

示例pom:

<profiles>
  <profile>
    <id>production</id>

    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>

    <build>
      <plugins>
        <!-- 
        <plugin>
          ...
        </plugin>
        -->
      </plugins>
    </build>
    </profile>

    <profile>
      <id>dev</id>
      <!-- Some other logic here, if necessary.
           Otherwise, there's no need for another profile. -->
    </profile>
</profiles>

要在开发模式下运行,您可以调用以下命令:

mvn -Pdev compile

要在生产模式下运行,只需使用正常步骤:

mvn compile

如果您不想/不需要在您的开发配置文件中定义任何特殊内容,您可以省略其声明并像这样调用您的开发模式!禁用配置文件):

mvn -P!production compile

请注意:您可能需要转义感叹号,因为它是 bash 中的特殊字符:

mvn -P\!production compile
于 2014-02-24T15:18:59.277 回答
8

基于 Krzysiek 的回答,您不需要定义显式执行,只需查看 maven 为您提供的输出并禁用默认执行即可。

例如,给定 Maven 的以下输出:

[INFO] --- maven-resources-plugin:2.7:copy-resources (prepare-dockerfile) @ tilbud ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
...
[INFO]
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ tilbud ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
....
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ tilbud ---
...
[INFO]
[INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ tilbud ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
...
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (default-testCompile) @ tilbud ---
....

生成的默认执行名称列在插件和目标之后的括号中。以下配置文件禁用了上面的插件:

<profiles>
    <profile>
        <id>packageOnly</id>
        <build>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>default-compile</id>
                                <phase>none</phase>
                            </execution>
                            <execution>
                                <id>default-testCompile</id>
                                <phase>none</phase>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>default-test</id>
                                <phase>none</phase>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-resources-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>default-resources</id>
                                <phase>none</phase>
                            </execution>
                            <execution>
                                <id>default-testResources</id>
                                <phase>none</phase>
                            </execution>
                            <execution>
                                <id>prepare-dockerfile</id>
                                <phase>none</phase>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </pluginManagement>
        </build>
    </profile>
</profiles>
于 2017-02-21T12:49:28.500 回答