我正在寻找一种在使用特定配置文件运行时禁用插件执行的方法。
这与running a plugin if a profile is selected相反。
我的用例:我的Maven构建有一大堆插件,但在我的开发机器上运行时,我想跳过其中的一些。我希望能够使用“dev”配置文件运行构建,而不是在本地评论这些插件。插件将继续在我的连续构建中运行。
想法?
答案 0 :(得分:60)
当特定配置文件处于活动状态时,有一种简洁的方法可以禁用插件执行。
首先,您需要为插件执行添加标识符,如:
<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 build:
mvn clean package
sass-maven-plugin 将执行,但在运行时:
mvn clean package -P no-sass
sass-maven-plugin 不会执行。
答案 1 :(得分:17)
示例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
答案 2 :(得分:6)
在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>