Skip to content

Commit 315dcad

Browse files
committed
update: 多模块版本字段 revision -> project.build.version
1 parent 70c7b70 commit 315dcad

File tree

9 files changed

+27
-24
lines changed

9 files changed

+27
-24
lines changed

jmg-antsword/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-antsword</artifactId>
1010

11-
1211
<dependencies>
1312
<dependency>
1413
<groupId>jmg</groupId>
1514
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
15+
<version>${project.build.version}</version>
1716
<scope>compile</scope>
1817
</dependency>
1918
</dependencies>

jmg-behinder/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-behinder</artifactId>
1010

@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>jmg</groupId>
1515
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
16+
<version>${project.build.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
1919
</dependencies>

jmg-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>java-memshell-generator</artifactId>
55
<groupId>jmg</groupId>
6-
<version>${revision}</version>
6+
<version>${project.build.version}</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>jmg-core</artifactId>

jmg-custom/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-custom</artifactId>
1010

@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>jmg</groupId>
1515
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
16+
<version>${project.build.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
1919
</dependencies>

jmg-godzilla/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-godzilla</artifactId>
1010

@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>jmg</groupId>
1515
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
16+
<version>${project.build.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
1919
</dependencies>

jmg-gui/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<parent>
44
<artifactId>java-memshell-generator</artifactId>
55
<groupId>jmg</groupId>
6-
<version>${revision}</version>
6+
<version>${project.build.version}</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>jmg-gui</artifactId>
1010
<dependencies>
1111
<dependency>
1212
<groupId>jmg</groupId>
1313
<artifactId>jmg-core</artifactId>
14-
<version>${revision}</version>
14+
<version>${project.build.version}</version>
1515
<scope>compile</scope>
1616
</dependency>
1717
<!--
@@ -38,37 +38,37 @@
3838
<dependency>
3939
<groupId>jmg</groupId>
4040
<artifactId>jmg-behinder</artifactId>
41-
<version>${revision}</version>
41+
<version>${project.build.version}</version>
4242
<scope>compile</scope>
4343
</dependency>
4444
<dependency>
4545
<groupId>jmg</groupId>
4646
<artifactId>jmg-antsword</artifactId>
47-
<version>${revision}</version>
47+
<version>${project.build.version}</version>
4848
<scope>compile</scope>
4949
</dependency>
5050
<dependency>
5151
<groupId>jmg</groupId>
5252
<artifactId>jmg-godzilla</artifactId>
53-
<version>${revision}</version>
53+
<version>${project.build.version}</version>
5454
<scope>compile</scope>
5555
</dependency>
5656
<dependency>
5757
<groupId>jmg</groupId>
5858
<artifactId>jmg-suo5</artifactId>
59-
<version>${revision}</version>
59+
<version>${project.build.version}</version>
6060
<scope>compile</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>jmg</groupId>
6464
<artifactId>jmg-neoregeorg</artifactId>
65-
<version>${revision}</version>
65+
<version>${project.build.version}</version>
6666
<scope>compile</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>jmg</groupId>
7070
<artifactId>jmg-custom</artifactId>
71-
<version>${revision}</version>
71+
<version>${project.build.version}</version>
7272
<scope>compile</scope>
7373
</dependency>
7474
</dependencies>

jmg-neoregeorg/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-neoregeorg</artifactId>
1010

@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>jmg</groupId>
1515
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
16+
<version>${project.build.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
1919
</dependencies>

jmg-suo5/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
7-
<version>${revision}</version>
7+
<version>${project.build.version}</version>
88
</parent>
99
<artifactId>jmg-suo5</artifactId>
1010

@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>jmg</groupId>
1515
<artifactId>jmg-core</artifactId>
16-
<version>${revision}</version>
16+
<version>${project.build.version}</version>
1717
<scope>compile</scope>
1818
</dependency>
1919
</dependencies>

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>jmg</groupId>
66
<artifactId>java-memshell-generator</artifactId>
77
<packaging>pom</packaging>
8-
<version>${revision}</version>
8+
<version>${project.build.version}</version>
99
<modules>
1010
<module>jmg-antsword</module>
1111
<module>jmg-behinder</module>
@@ -15,10 +15,14 @@
1515
<module>jmg-gui</module>
1616
<module>jmg-neoregeorg</module>
1717
<module>jmg-suo5</module>
18+
<!-- <module>jmg-woodpecker</module>-->
19+
<!-- <module>jmg-extender</module>-->
20+
<!-- <module>jmg-cli</module>-->
21+
<!-- <module>jmg-sdk</module>-->
1822
</modules>
1923

2024
<properties>
21-
<revision>1.0.8</revision>
25+
<project.build.version>1.0.8</project.build.version>
2226
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2327
<maven.compiler.source>8</maven.compiler.source>
2428
<maven.compiler.target>8</maven.compiler.target>

0 commit comments

Comments
 (0)