Skip to content

Commit a407505

Browse files
committed
extract pom version into properties
1 parent 0fb39c4 commit a407505

23 files changed

Lines changed: 113 additions & 49 deletions

File tree

core-groovy-2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.codehaus.groovy</groupId>
7979
<artifactId>groovy-eclipse-compiler</artifactId>
80-
<version>3.3.0-01</version>
80+
<version>${groovy.compiler.version}</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.codehaus.groovy</groupId>

core-java-modules/core-java-11/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<plugin>
6666
<groupId>org.apache.maven.plugins</groupId>
6767
<artifactId>maven-shade-plugin</artifactId>
68-
<version>3.2.1</version>
68+
<version>${shade.plugin.version}</version>
6969
<executions>
7070
<execution>
7171
<phase>package</phase>
@@ -109,6 +109,7 @@
109109
<uberjar.name>benchmarks</uberjar.name>
110110
<jmh.version>1.22</jmh.version>
111111
<eclipse.collections.version>10.0.0</eclipse.collections.version>
112+
<shade.plugin.version>10.0.0</shade.plugin.version>
112113
</properties>
113114

114115
</project>

data-structures/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.leansoft</groupId>
2525
<artifactId>bigqueue</artifactId>
26-
<version>0.7.0</version>
26+
<version>${bigqueue.version}</version>
2727
</dependency>
2828
</dependencies>
2929

@@ -39,4 +39,8 @@
3939
</pluginManagement>
4040
</build>
4141

42+
<properties>
43+
<bigqueue.version>0.7.0</bigqueue.version>
44+
</properties>
45+
4246
</project>

ethereum/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
<plugin>
190190
<groupId>org.apache.maven.plugins</groupId>
191191
<artifactId>maven-war-plugin</artifactId>
192-
<version>3.0.0</version>
192+
<version>${war.plugin.version}</version>
193193
<configuration>
194194
<warSourceDirectory>src/main/webapp</warSourceDirectory>
195195
<failOnMissingWebXml>false</failOnMissingWebXml>
@@ -218,5 +218,6 @@
218218
<compiler.plugin.version>3.1</compiler.plugin.version>
219219
<source.version>1.8</source.version>
220220
<target.version>1.8</target.version>
221+
<war.plugin.version>3.0.0</war.plugin.version>
221222
</properties>
222223
</project>

java-numbers-3/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>it.unimi.dsi</groupId>
1919
<artifactId>dsiutils</artifactId>
20-
<version>2.6.0</version>
20+
<version>${dsiutils.version}</version>
2121
</dependency>
2222
</dependencies>
2323

@@ -31,4 +31,8 @@
3131
</resources>
3232
</build>
3333

34+
<properties>
35+
<dsiutils.version>2.6.0</dsiutils.version>
36+
<properties>
37+
3438
</project>

jhipster/jhipster-uaa/quotes/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
<dependency>
233233
<groupId>org.zalando</groupId>
234234
<artifactId>problem-spring-web</artifactId>
235-
<version>0.24.0-RC.0</version>
235+
<version>${zalando.version}</version>
236236
</dependency>
237237
<dependency>
238238
<groupId>org.springframework.security.oauth</groupId>
@@ -910,5 +910,6 @@
910910
<sonar.tests>${project.basedir}/src/test/</sonar.tests>
911911

912912
<!-- jhipster-needle-maven-property -->
913+
<zalando.version>0.24.0-RC.0</zalando.version>
913914
</properties>
914915
</project>

kotlin-libraries-2/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.reactivex.rxjava2</groupId>
2323
<artifactId>rxkotlin</artifactId>
24-
<version>2.3.0</version>
24+
<version>${rxkotlin.version}</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>junit</groupId>
@@ -86,6 +86,7 @@
8686
<guava.version>27.1-jre</guava.version>
8787
<mockk.version>1.9.3</mockk.version>
8888
<kotlinx-collections-immutable.version>0.1</kotlinx-collections-immutable.version>
89+
<rxkotlin.version>2.3.0</rxkotlin.version>
8990
</properties>
9091

9192
</project>

kotlin-quasar/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>junit</groupId>
5050
<artifactId>junit</artifactId>
51-
<version>4.12</version>
51+
<version>${junit.version}</version>
5252
</dependency>
5353
<!-- logging -->
5454
<dependency>
@@ -148,6 +148,7 @@
148148
<dependency.plugin.version>3.1.1</dependency.plugin.version>
149149
<surefire.plugin.version>2.22.1</surefire.plugin.version>
150150
<exec.plugin.version>1.3.2</exec.plugin.version>
151+
<junit.version>4.12</junit.version>
151152
</properties>
152153

153154
</project>

maven-all/profiles/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<plugin>
7474
<groupId>org.apache.maven.plugins</groupId>
7575
<artifactId>maven-help-plugin</artifactId>
76-
<version>3.2.0</version>
76+
<version>${help.plugin.version}</version>
7777
<executions>
7878
<execution>
7979
<id>show-profiles</id>
@@ -87,4 +87,8 @@
8787
</plugins>
8888
</build>
8989

90+
<properties>
91+
<help.plugin.version>3.2.0</help.plugin.version>
92+
</properties>
93+
9094
</project>

maven-all/versions-maven-plugin/original/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<plugin>
4747
<groupId>org.codehaus.mojo</groupId>
4848
<artifactId>versions-maven-plugin</artifactId>
49-
<version>2.7</version>
49+
<version>${versions.plugin.version}</version>
5050
<configuration>
5151
<excludes>
5252
<exclude>org.apache.commons:commons-collections4</exclude>
@@ -76,6 +76,7 @@
7676
<commons-collections4.version>4.0</commons-collections4.version>
7777
<commons-lang3.version>3.0</commons-lang3.version>
7878
<commons-beanutils.version>1.9.1</commons-beanutils.version>
79+
<versions.plugin.version>2.7</versions.plugin.version>
7980
</properties>
8081

8182
</project>

0 commit comments

Comments
 (0)