我在使用Maven构建的项目中使用semantic versioning。在POM中,我想掌握版本号的组件(最好是作为属性)。我该怎么办?
所以,如果我的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>
...
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>1.2.3-SNAPSHOT</version>
<dependencies>...</dependencies>
我想拥有version.major
=“ 1”,version.minor
= 2,version.patch
=“ 3”之类的属性。