我有一组项目,他们都需要在构建期间运行相同系列的Maven插件执行。我想避免在每个项目中重新声明所有这些配置,因此我将它们全部继承自父pom“模板”项目,该项目仅包含那些插件执行(8种不同的mojos)。但我希望这些插件执行只在子项目上运行,而不是在Maven构建期间在父项目上运行。
我试图完成这四种不同的方式,每种方式都有我不喜欢的副作用。
在父pom的build/plugins
元素中声明插件执行,并在父项目中使用properties-maven-plugin到turn on the skip
properties on other plugins。这不起作用,因为其中一个插件目标(maven-dependency-plugin:build-classpath)没有skip
属性。
在父pom的build/pluginManagement
元素中声明插件执行。不幸的是,这要求我重新声明每个子项目pom的build/plugins
元素中的八个插件中的每个插件:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
...
如果我需要更改模板pom中的插件,这太重复了,也有问题。
在父pom中的配置文件中声明插件执行,该配置文件由nobuild.txt
文件的 lack 激活(父pom中存在,所以插件不要在那里执行):
<profiles>
<profile>
<activation>
<file>
<missing>nobuild.txt</missing>
</file>
</activation>
<build>
....
</build>
</profile>
</profiles>
这大部分都有效,除了missing
元素中的文件路径似乎是基于当前工作目录而不是基于项目的。这打破了我希望能够做的一些多模块构建。 编辑:澄清一下,父“模板”项目实际上本身就是多模块项目中的一个模块,当我尝试例如在根目录上执行mvn install
时,构建就会中断。项目结构如下:
+ job
|- job-core
|- job-template
|- job1 inherits from job-template
|- job2 inherits from job-template
设置自定义生命周期和包装。这似乎允许我将插件绑定到生命周期阶段but not specify any configuration。
那么,是否有另一种方法可以指定一堆Maven插件执行,这些插件可以在多个项目中重复使用(每个项目的poms中重复次数最少)?
答案 0 :(得分:10)
我最终编写了自己的插件,利用mojo-executor来调用其他mojos。这允许我1)集中构建配置和2)最小化在每个子项目中重复的配置量。
(如果您对所有这些的原因感到好奇:每个子项目都是一个将从命令行执行的作业。该构建设置一个调用者shell脚本并将其附加到构建中它会被检入我们的工件存储库。稍后,部署脚本将它们下载到它们将运行的机器上。)
模板项目的相关部分:
<project ...>
<parent> ... </parent>
<artifactId>job-template</artifactId>
<packaging>pom</packaging>
<name>job project template</name>
<build>
<pluginManagement>
<plugin>
<groupId>...</groupId>
<artifactId>job-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-sources-step</id>
<goals><goal>job-generate-sources</goal></goals>
</execution>
<execution>
<id>package-step</id>
<goals><goal>job-package</goal></goals>
</execution>
... (a couple more executions) ...
</executions>
</plugin>
</pluginManagement>
</build>
</project>
必须创建一个新的maven-plugin项目(job-maven-plugin)。 Pom看起来像:
<project ...>
<parent> ... </parent>
<artifactId>job-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>job maven executor plugin</name>
<dependencies>
<dependency>
<groupId>org.twdata.maven</groupId>
<artifactId>mojo-executor</artifactId>
<!-- version 1.5 supports Maven 2, while version 2.0 only supports Maven 3 -->
<version>1.5</version>
</dependency>
</dependencies>
</project>
从模板项目中可以看出,我的插件中有多个mojos(每个阶段需要一些东西)。例如,作业包mojo绑定到包阶段,并使用mojo-executor库运行另外两个mojos(只附加一些构建工件):
/**
* @goal job-package
* @phase package
*/
public class PackageMojo extends AbstractMojo {
/**
* @parameter expression="${project}"
* @required
* @readonly
*/
protected MavenProject project;
/**
* @parameter expression="${session}"
* @required
* @readonly
*/
protected MavenSession session;
/**
* @component
* @required
*/
protected PluginManager pluginManager;
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
ExecutionEnvironment environment = executionEnvironment(project, session, pluginManager);
// Attach script as a build artifact
executeMojo(
plugin(
groupId("org.codehaus.mojo"),
artifactId("build-helper-maven-plugin"),
version("1.7")
),
goal("attach-artifact"),
configuration(
element("artifacts",
element("artifact",
element("file", "${project.build.directory}/script.shl"),
element("type", "shl")
)
)
),
environment
);
// Zip up the jar and script as another build artifact
executeMojo(
plugin(
groupId("org.apache.maven.plugins"),
artifactId("maven-assembly-plugin"),
version("2.3")
),
goal("single"),
configuration(
element("descriptors",
element("descriptor", "${project.build.directory}/job/descriptor.xml")
)
),
environment
);
}
}
然后,在子项目中,我只需要引用一次插件。在我看来,这比重复每个子项目中的每个幕后插件(不可接受地增加poms之间的耦合)更为可取。如果我想在将来向构建过程添加mojo执行,我只需修改一个地方并修改版本号。儿童项目的pom看起来像:
<project ...>
<parent>
<groupId> ... </groupId>
<artifactId>job-template</artifactId>
<version> ... </version>
<relativePath>../job-template</relativePath>
</parent>
<artifactId>job-testjob</artifactId>
<name>test job</name>
<build>
<plugins>
<plugin>
<groupId> ... </groupId>
<artifactId>job-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
此外,整个multimodule目录结构现在如下所示:
+- job
+- job-core
+- job-maven-plugin
+- job-template
+- job-testjob1 (inherits from job-template)
+- job-testjob2 (inherits from job-template)
在我看来,这个解决方案并不是完全最优的,因为我现在将插件配置嵌入到一系列mojos而不是pom中,但它符合我的目标,即集中配置并最大限度地减少子项目poms之间的重复。
(最后一点说明:我刚刚发现maven-aggregate-plugin似乎允许在pom中对多个插件执行进行分组。这可能以稍微更理想的方式解决了问题,但我不在重温最后几个小时工作的心情。虽然可能对其他人有益。)
答案 1 :(得分:5)
就个人而言,我会选择解决方案2.重复次数很少,如果可能的话,您应该尽量避免使用配置文件,以避免必须开始记录哪些项目需要激活哪些配置文件。
只需执行mvn (clean) install
即可正确构建项目。
答案 2 :(得分:2)
这是我在寻找同一问题的解决方案时发现here的另一个选项。我在这里发布它是因为这已经是一个很好的选项集合 - 希望它可以帮助其他人不花费数小时来解决这个问题:
鉴于插件可以选择跳过执行,可以在父pom(section)中启用该选项,并将“inherit”标志设置为false,以便它不会传播给子节点:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<inherited>true</inherited>
<configuration>
...
</configuration>
</execution>
</executions>
<!-- Skip plugin execution for parent pom but enable it for all children -->
<configuration>
<skipAssembly>true</skipAssembly>
</configuration>
<inherited>false</inherited>
</plugin>
虽然我在第一次阅读时对此解决方案持怀疑态度,但它对我有用 - 至少对于汇编插件而言。
答案 3 :(得分:1)
还有一个选择:而不是使用&#34;跳过&#34;属性可以更改阶段,执行绑定到不存在的值,如never
。
这与@Timi
建议的<inherited>false</inherited>
方法一起使用非常好
答案 4 :(得分:0)
这是第五种方式。我认为它的缺点最少:没有配置文件,没有自定义生命周期,在子POM中没有声明,对插件没有“跳过”要求。
从https://stackoverflow.com/a/14653088/2053580复制了它-非常感谢end-user!
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- Main declaration and configuration of the plugin -->
<!-- Will be inherited by children -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<!--This must be named-->
<id>checkstyle</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<!-- You may also use per-execution configuration block -->
<configuration...>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<!-- This declaration makes sure children get plugin in their lifecycle -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<!-- Configuration won't be propagated to children -->
<inherited>false</inherited>
<executions>
<execution>
<!--This matches and thus overrides execution defined above -->
<id>checkstyle</id>
<!-- Unbind from lifecycle for this POM -->
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>