插件版本: 2.0
我正在尝试使用maven-release-plugin来设置父POM和所有模块的版本。
使用以下父POM:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.co.mycompany</groupId>
<artifactId>myProject</artifactId>
<version>latest-SNAPSHOT</version>
<packaging>pom</packaging>
<name>My Project</name>
<modules>
<module>../../subPom1</module>
<module>../../subPom2</module>
<module>../../subPom3</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>clean</phase>
<id>set-release-versions</id>
<configuration>
<developmentVersion>1.1.8</developmentVersion>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
运行mvn clean install -DskipTests -Pdeploy
时,完全忽略在清洁阶段运行插件的配置,并使用值“latest-SNAPSHOT”进行构建。
我期待它从插件配置中获取值“1.1.8”。
每个孩子POM相当于:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uk.co.mycompany</groupId>
<artifactId>myProject</artifactId>
<version>latest-SNAPSHOT</version>
<relativePath>../../System/build/parentPom.xml</relativePath>
</parent>
...
</project>
为什么忽略配置?
编辑#1:按要求提供文件系统结构:
/
|- system
| |
| |- build
| |
| |-parentPOM file
|
|- business
| |
| | - childPOM1
| | - childPOM2
|- client
| | - childPOM3
| | - childPOM4
忽略SSCCE中的...... / ... - 我已经模糊了真正的值来描述这个问题。
编辑#2:我已根据建议将定义移至<pluginManagement>
,但问题仍然存在(不使用插件,没有反馈到控制台):
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<developmentVersion>1.1.8</developmentVersion>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
答案 0 :(得分:2)
您忘了设置插件的目标。您配置了更新版本目标所需的参数,但您告诉maven只在清洁阶段执行插件,而不是插件的目标。所以它什么都不做。
当你尝试mvn clean时检查maven日志它应该只显示:
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ test ---
将配置更改为:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>clean</phase>
<id>set-release-versions</id>
<goals><goal>update-versions</goal></goals>
<configuration>
<developmentVersion>1.1.8</developmentVersion>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
目标更新版本在maven的干净阶段调用。
[INFO] --- maven-release-plugin:2.0:update-versions (set-release-versions) @ bdd ---
不确定这是否会解决您的所有问题,但这会迫使maven在预期的清洁阶段执行插件。
然而,当用于仅更改版本时,发布插件需要许多特殊设置(如scm连接)。所以我建议使用versions-maven-plugin
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>set</goal>
</goals>
<phase>clean</phase>
<configuration>
<newVersion>1.1.8</newVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
答案 1 :(得分:1)
最后,我放弃了。
Stack Overflow等所有这些问题都充满了未解决的问题,并且插件文档无法提供POM格式的使用示例,告诉我需要了解的有关此插件的所有信息。
我的解决方法是将父POM的版本设置为“latest-SNAPSHOT”并引入一个名为<myproject.release.version>,
的属性,我在任何地方都使用该属性来打印版本号。
特别是,我想在WAR文件的清单中打印版本号。我是这样做的:
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Implementation-Version>${myproject.release.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<id>war</id>
<phase>package</phase>
<goals>
<goal>war</goal>
</goals>
<configuration>
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
<filters>
<filter>${project.parent.basedir}/filter/${webapp.filter}.properties</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
使用上述配置,我将版本号作为Maven属性删除到我的清单中。
在我的应用程序中,我从那里拿起它并在屏幕上绘制它。