Skip to content

Commit 7e0b53a

Browse files
kweinmeisterShabirmean
authored andcommitted
add back version for spring-boot-maven-plugin
1 parent b333ab8 commit 7e0b53a

File tree

29 files changed

+86
-27
lines changed

29 files changed

+86
-27
lines changed

appengine-java11/springboot-helloworld/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<properties>
3232
<maven.compiler.target>11</maven.compiler.target>
3333
<maven.compiler.source>11</maven.compiler.source>
34+
<spring-boot.version>2.7.10</spring-boot.version>
3435
</properties>
3536

3637
<dependencyManagement>
@@ -39,7 +40,7 @@
3940
<!-- Import dependency management from Spring Boot -->
4041
<groupId>org.springframework.boot</groupId>
4142
<artifactId>spring-boot-dependencies</artifactId>
42-
<version>2.7.10</version>
43+
<version>${spring-boot.version}</version>
4344
<type>pom</type>
4445
<scope>import</scope>
4546
</dependency>
@@ -78,6 +79,7 @@
7879
<plugin>
7980
<groupId>org.springframework.boot</groupId>
8081
<artifactId>spring-boot-maven-plugin</artifactId>
82+
<version>${spring-boot.version}</version>
8183
<executions>
8284
<execution>
8385
<goals>

appengine-java11/tasks-handler/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ limitations under the License.
3434
<properties>
3535
<maven.compiler.target>11</maven.compiler.target>
3636
<maven.compiler.source>11</maven.compiler.source>
37+
<spring.boot.version>2.7.10</spring.boot.version>
3738
</properties>
3839

3940
<dependencyManagement>
@@ -42,7 +43,7 @@ limitations under the License.
4243
<!-- Import dependency management from Spring Boot -->
4344
<groupId>org.springframework.boot</groupId>
4445
<artifactId>spring-boot-dependencies</artifactId>
45-
<version>2.7.10</version>
46+
<version>${spring.boot.version}</version>
4647
<type>pom</type>
4748
<scope>import</scope>
4849
</dependency>
@@ -82,6 +83,7 @@ limitations under the License.
8283
<plugin>
8384
<groupId>org.springframework.boot</groupId>
8485
<artifactId>spring-boot-maven-plugin</artifactId>
86+
<version>${spring.boot.version}</version>
8587
<executions>
8688
<execution>
8789
<goals>

appengine-java8/springboot-helloworld/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
<plugin>
8383
<groupId>org.springframework.boot</groupId>
8484
<artifactId>spring-boot-maven-plugin</artifactId>
85+
<version>${spring.boot.version}</version>
8586
</plugin>
8687
<plugin>
8788
<groupId>com.google.cloud.tools</groupId>

cloud-sql/r2dbc/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<java.version>11</java.version>
2525
<maven.compiler.target>11</maven.compiler.target>
2626
<maven.compiler.source>11</maven.compiler.source>
27+
<spring.boot.version>2.7.10</spring.boot.version>
2728
</properties>
2829

2930
<dependencies>
@@ -72,6 +73,7 @@
7273
<plugin>
7374
<groupId>org.springframework.boot</groupId>
7475
<artifactId>spring-boot-maven-plugin</artifactId>
76+
<version>${spring.boot.version}</version>
7577
<executions>
7678
<execution>
7779
<id>repackage</id>
@@ -101,7 +103,7 @@
101103
<dependency>
102104
<groupId>org.springframework.boot</groupId>
103105
<artifactId>spring-boot-starter-parent</artifactId>
104-
<version>2.7.10</version>
106+
<version>${spring.boot.version}</version>
105107
<scope>import</scope>
106108
<type>pom</type>
107109
</dependency>

eventarc/audit-storage/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ limitations under the License.
2727
<properties>
2828
<maven.compiler.target>11</maven.compiler.target>
2929
<maven.compiler.source>11</maven.compiler.source>
30+
<spring.boot.version>2.7.10</spring.boot.version>
3031
</properties>
3132

3233
<dependencyManagement>
@@ -35,7 +36,7 @@ limitations under the License.
3536
<!-- Import dependency management from Spring Boot -->
3637
<groupId>org.springframework.boot</groupId>
3738
<artifactId>spring-boot-dependencies</artifactId>
38-
<version>2.7.10</version>
39+
<version>${spring.boot.version}</version>
3940
<type>pom</type>
4041
<scope>import</scope>
4142
</dependency>
@@ -81,6 +82,7 @@ limitations under the License.
8182
<plugin>
8283
<groupId>org.springframework.boot</groupId>
8384
<artifactId>spring-boot-maven-plugin</artifactId>
85+
<version>${spring.boot.version}</version>
8486
<executions>
8587
<execution>
8688
<goals>

eventarc/generic/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ limitations under the License.
2727
<properties>
2828
<maven.compiler.target>11</maven.compiler.target>
2929
<maven.compiler.source>11</maven.compiler.source>
30+
<spring.boot.version>2.7.10</spring.boot.version>
3031
</properties>
3132

3233
<dependencyManagement>
@@ -35,7 +36,7 @@ limitations under the License.
3536
<!-- Import dependency management from Spring Boot -->
3637
<groupId>org.springframework.boot</groupId>
3738
<artifactId>spring-boot-dependencies</artifactId>
38-
<version>2.7.10</version>
39+
<version>${spring.boot.version}</version>
3940
<type>pom</type>
4041
<scope>import</scope>
4142
</dependency>
@@ -74,6 +75,7 @@ limitations under the License.
7475
<plugin>
7576
<groupId>org.springframework.boot</groupId>
7677
<artifactId>spring-boot-maven-plugin</artifactId>
78+
<version>${spring.boot.version}</version>
7779
<executions>
7880
<execution>
7981
<goals>

eventarc/pubsub/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ limitations under the License.
2727
<properties>
2828
<maven.compiler.target>11</maven.compiler.target>
2929
<maven.compiler.source>11</maven.compiler.source>
30+
<spring.boot.version>2.7.10</spring.boot.version>
3031
</properties>
3132

3233
<dependencyManagement>
@@ -35,7 +36,7 @@ limitations under the License.
3536
<!-- Import dependency management from Spring Boot -->
3637
<groupId>org.springframework.boot</groupId>
3738
<artifactId>spring-boot-dependencies</artifactId>
38-
<version>2.7.10</version>
39+
<version>${spring.boot.version}</version>
3940
<type>pom</type>
4041
<scope>import</scope>
4142
</dependency>
@@ -81,6 +82,7 @@ limitations under the License.
8182
<plugin>
8283
<groupId>org.springframework.boot</groupId>
8384
<artifactId>spring-boot-maven-plugin</artifactId>
85+
<version>${spring.boot.version}</version>
8486
<executions>
8587
<execution>
8688
<goals>

flexible/helloworld-springboot/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@
3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>
3636
<maven.compiler.target>1.8</maven.compiler.target>
37+
<spring.boot.version>2.7.10</spring.boot.version>
3738
</properties>
3839

3940
<dependencyManagement>
4041
<dependencies>
4142
<dependency>
4243
<groupId>org.springframework.boot</groupId>
4344
<artifactId>spring-boot-dependencies</artifactId>
44-
<version>2.7.10</version>
45+
<version>${spring.boot.version}</version>
4546
<type>pom</type>
4647
<scope>import</scope>
4748
</dependency>
@@ -75,6 +76,7 @@
7576
<plugin>
7677
<groupId>org.springframework.boot</groupId>
7778
<artifactId>spring-boot-maven-plugin</artifactId>
79+
<version>${spring.boot.version}</version>
7880
<executions>
7981
<execution>
8082
<goals>

flexible/java-11/analytics/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@
3737
<appengine.maven.plugin>2.4.3</appengine.maven.plugin>
3838
<jetty>9.4.44.v20210927</jetty>
3939
<failOnMissingWebXml>false</failOnMissingWebXml> <!-- REQUIRED -->
40+
41+
<spring.boot.version>2.7.10</spring.boot.version>
4042
</properties>
4143

4244
<dependencyManagement>
4345
<dependencies>
4446
<dependency>
4547
<groupId>org.springframework.boot</groupId>
4648
<artifactId>spring-boot-dependencies</artifactId>
47-
<version>2.7.10</version>
49+
<version>${spring.boot.version}</version>
4850
<type>pom</type>
4951
<scope>import</scope>
5052
</dependency>
@@ -124,6 +126,7 @@
124126
<plugin>
125127
<groupId>org.springframework.boot</groupId>
126128
<artifactId>spring-boot-maven-plugin</artifactId>
129+
<version>${spring.boot.version}</version>
127130
<executions>
128131
<execution>
129132
<goals>

flexible/java-11/cloudstorage/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939
<appengine.maven.plugin>2.4.3</appengine.maven.plugin>
4040
<jetty>9.4.44.v20210927</jetty>
41+
42+
<spring.boot.version>2.7.10</spring.boot.version>
4143
</properties>
4244

4345
<!-- [START gae_flex_storage_dependencies] -->
@@ -55,7 +57,7 @@
5557
<dependency>
5658
<groupId>org.springframework.boot</groupId>
5759
<artifactId>spring-boot-dependencies</artifactId>
58-
<version>2.7.10</version>
60+
<version>${spring.boot.version}</version>
5961
<type>pom</type>
6062
<scope>import</scope>
6163
</dependency>
@@ -149,6 +151,7 @@
149151
<plugin>
150152
<groupId>org.springframework.boot</groupId>
151153
<artifactId>spring-boot-maven-plugin</artifactId>
154+
<version>${spring.boot.version}</version>
152155
<executions>
153156
<execution>
154157
<goals>

flexible/java-11/datastore/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939
<appengine.maven.plugin>2.4.3</appengine.maven.plugin>
4040
<jetty>9.4.44.v20210927</jetty>
41+
42+
<spring.boot.version>2.7.10</spring.boot.version>
4143
</properties>
4244

4345
<!-- [START gae_flex_datastore_config] -->
@@ -55,7 +57,7 @@
5557
<dependency>
5658
<groupId>org.springframework.boot</groupId>
5759
<artifactId>spring-boot-dependencies</artifactId>
58-
<version>2.7.10</version>
60+
<version>${spring.boot.version}</version>
5961
<type>pom</type>
6062
<scope>import</scope>
6163
</dependency>
@@ -143,6 +145,7 @@
143145
<plugin>
144146
<groupId>org.springframework.boot</groupId>
145147
<artifactId>spring-boot-maven-plugin</artifactId>
148+
<version>${spring.boot.version}</version>
146149
<executions>
147150
<execution>
148151
<goals>

flexible/java-11/pubsub/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939
<appengine.maven.plugin>2.4.3</appengine.maven.plugin>
4040
<jetty>9.4.50.v20221201</jetty>
41+
42+
<spring.boot.version>2.7.10</spring.boot.version>
4143
</properties>
4244

4345
<dependencyManagement>
@@ -52,7 +54,7 @@
5254
<dependency>
5355
<groupId>org.springframework.boot</groupId>
5456
<artifactId>spring-boot-dependencies</artifactId>
55-
<version>2.7.10</version>
57+
<version>${spring.boot.version}</version>
5658
<type>pom</type>
5759
<scope>import</scope>
5860
</dependency>
@@ -250,6 +252,7 @@
250252
<plugin>
251253
<groupId>org.springframework.boot</groupId>
252254
<artifactId>spring-boot-maven-plugin</artifactId>
255+
<version>${spring.boot.version}</version>
253256
<executions>
254257
<execution>
255258
<goals>

flexible/java-11/springboot-helloworld/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,16 @@
3131
<properties>
3232
<maven.compiler.target>11</maven.compiler.target>
3333
<maven.compiler.source>11</maven.compiler.source>
34-
</properties>
34+
<spring.boot.version>2.7.10</spring.boot.version>
35+
</properties>
3536

3637
<dependencyManagement>
3738
<dependencies>
3839
<dependency>
3940
<!-- Import dependency management from Spring Boot -->
4041
<groupId>org.springframework.boot</groupId>
4142
<artifactId>spring-boot-dependencies</artifactId>
42-
<version>2.7.10</version>
43+
<version>${spring.boot.version}</version>
4344
<type>pom</type>
4445
<scope>import</scope>
4546
</dependency>
@@ -92,6 +93,7 @@
9293
<plugin>
9394
<groupId>org.springframework.boot</groupId>
9495
<artifactId>spring-boot-maven-plugin</artifactId>
96+
<version>${spring.boot.version}</version>
9597
<executions>
9698
<execution>
9799
<goals>

flexible/java-11/static-files/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,16 @@
3838

3939
<appengine.maven.plugin>2.4.3</appengine.maven.plugin>
4040
<jetty>9.4.44.v20210927</jetty>
41+
42+
<spring.boot.version>2.7.10</spring.boot.version>
4143
</properties>
4244

4345
<dependencyManagement>
4446
<dependencies>
4547
<dependency>
4648
<groupId>org.springframework.boot</groupId>
4749
<artifactId>spring-boot-dependencies</artifactId>
48-
<version>2.7.10</version>
50+
<version>${spring.boot.version}</version>
4951
<type>pom</type>
5052
<scope>import</scope>
5153
</dependency>
@@ -129,6 +131,7 @@
129131
<plugin>
130132
<groupId>org.springframework.boot</groupId>
131133
<artifactId>spring-boot-maven-plugin</artifactId>
134+
<version>${spring.boot.version}</version>
132135
<executions>
133136
<execution>
134137
<goals>

flexible/java-11/websocket-jetty/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<maven.compiler.source>1.8</maven.compiler.source>
3939
<failOnMissingWebXml>false</failOnMissingWebXml> <!-- REQUIRED -->
4040
<jetty.version>9.4.46.v20220331</jetty.version>
41+
<spring.boot.version>2.7.10</spring.boot.version>
4142
</properties>
4243

4344
<dependencyManagement>
@@ -52,7 +53,7 @@
5253
<dependency>
5354
<groupId>org.springframework.boot</groupId>
5455
<artifactId>spring-boot-dependencies</artifactId>
55-
<version>2.7.10</version>
56+
<version>${spring.boot.version}</version>
5657
<type>pom</type>
5758
<scope>import</scope>
5859
</dependency>
@@ -189,6 +190,7 @@
189190
<plugin>
190191
<groupId>org.springframework.boot</groupId>
191192
<artifactId>spring-boot-maven-plugin</artifactId>
193+
<version>${spring.boot.version}</version>
192194
<executions>
193195
<execution>
194196
<goals>

flexible/java-8/helloworld-springboot/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@
3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>
3636
<maven.compiler.target>1.8</maven.compiler.target>
37+
<spring.boot.version>2.7.10</spring.boot.version>
3738
</properties>
3839

3940
<dependencyManagement>
4041
<dependencies>
4142
<dependency>
4243
<groupId>org.springframework.boot</groupId>
4344
<artifactId>spring-boot-dependencies</artifactId>
44-
<version>2.7.10</version>
45+
<version>${spring.boot.version}</version>
4546
<type>pom</type>
4647
<scope>import</scope>
4748
</dependency>
@@ -75,6 +76,7 @@
7576
<plugin>
7677
<groupId>org.springframework.boot</groupId>
7778
<artifactId>spring-boot-maven-plugin</artifactId>
79+
<version>${spring.boot.version}</version>
7880
<executions>
7981
<execution>
8082
<goals>

0 commit comments

Comments
 (0)