Skip to content

Commit a88534a

Browse files
authored
chore: update the version number to 2.1.0-SNAPSHOT (#875)
1 parent db8b7b0 commit a88534a

7 files changed

Lines changed: 44 additions & 9 deletions

File tree

fesod-bom/pom.xml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@
1919
under the License.
2020
2121
-->
22-
<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">
22+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2324
<modelVersion>4.0.0</modelVersion>
2425

2526
<parent>
2627
<groupId>org.apache.fesod</groupId>
2728
<artifactId>fesod-parent</artifactId>
28-
<version>2.1.0-incubating</version>
29+
<version>${revision}</version>
2930
</parent>
3031

3132
<artifactId>fesod-bom</artifactId>
@@ -46,4 +47,23 @@
4647
</dependency>
4748
</dependencies>
4849
</dependencyManagement>
50+
51+
<build>
52+
<plugins>
53+
<plugin>
54+
<groupId>org.codehaus.mojo</groupId>
55+
<artifactId>flatten-maven-plugin</artifactId>
56+
<configuration>
57+
<flattenMode>bom</flattenMode>
58+
<pomElements>
59+
<parent>remove</parent>
60+
<repositories>remove</repositories>
61+
<dependencies>remove</dependencies>
62+
<properties>remove</properties>
63+
<dependencyManagement>interpolate</dependencyManagement>
64+
</pomElements>
65+
</configuration>
66+
</plugin>
67+
</plugins>
68+
</build>
4969
</project>

fesod-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.apache.fesod</groupId>
2828
<artifactId>fesod-parent</artifactId>
29-
<version>2.1.0-incubating</version>
29+
<version>${revision}</version>
3030
</parent>
3131

3232
<artifactId>fesod-common</artifactId>

fesod-examples/fesod-sheet-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.apache.fesod</groupId>
2828
<artifactId>fesod-examples</artifactId>
29-
<version>2.1.0-incubating</version>
29+
<version>${revision}</version>
3030
</parent>
3131

3232
<artifactId>fesod-sheet-examples</artifactId>

fesod-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.fesod</groupId>
2727
<artifactId>fesod-parent</artifactId>
28-
<version>2.1.0-incubating</version>
28+
<version>${revision}</version>
2929
</parent>
3030

3131
<artifactId>fesod-examples</artifactId>

fesod-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.apache.fesod</groupId>
2828
<artifactId>fesod-parent</artifactId>
29-
<version>2.1.0-incubating</version>
29+
<version>${revision}</version>
3030
</parent>
3131

3232
<artifactId>fesod-shaded</artifactId>

fesod-sheet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.apache.fesod</groupId>
2828
<artifactId>fesod-parent</artifactId>
29-
<version>2.1.0-incubating</version>
29+
<version>${revision}</version>
3030
</parent>
3131

3232
<artifactId>fesod-sheet</artifactId>

pom.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
<groupId>org.apache.fesod</groupId>
3737
<artifactId>fesod-parent</artifactId>
38-
<version>2.1.0-incubating</version>
38+
<version>${revision}</version>
3939

4040
<packaging>pom</packaging>
4141
<name>fesod-parent</name>
@@ -81,7 +81,7 @@
8181
</modules>
8282

8383
<properties>
84-
<revision>2.0.1-incubating</revision>
84+
<revision>2.1.0-SNAPSHOT</revision>
8585
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8686
<java.version>1.8</java.version>
8787
<maven.compiler.target>1.8</maven.compiler.target>
@@ -403,6 +403,11 @@
403403
<artifactId>flatten-maven-plugin</artifactId>
404404
<version>1.2.7</version>
405405
</plugin>
406+
<plugin>
407+
<groupId>org.codehaus.mojo</groupId>
408+
<artifactId>versions-maven-plugin</artifactId>
409+
<version>2.21.0</version>
410+
</plugin>
406411
<plugin>
407412
<groupId>com.diffplug.spotless</groupId>
408413
<artifactId>spotless-maven-plugin</artifactId>
@@ -479,6 +484,8 @@
479484
<pomElements>
480485
<url>remove</url>
481486
<scm>remove</scm>
487+
<distributionManagement>remove</distributionManagement>
488+
<repositories>remove</repositories>
482489
</pomElements>
483490
</configuration>
484491
<executions>
@@ -506,6 +513,14 @@
506513
</executions>
507514
</plugin>
508515

516+
<plugin>
517+
<groupId>org.codehaus.mojo</groupId>
518+
<artifactId>versions-maven-plugin</artifactId>
519+
<configuration>
520+
<generateBackupPoms>false</generateBackupPoms>
521+
</configuration>
522+
</plugin>
523+
509524
<plugin>
510525
<groupId>com.diffplug.spotless</groupId>
511526
<artifactId>spotless-maven-plugin</artifactId>

0 commit comments

Comments
 (0)