@@ -5,7 +5,7 @@ plugins {
5
5
group = " org.openrewrite.recipe"
6
6
description = " Eliminate legacy Spring patterns and migrate between major Spring Boot versions. Automatically."
7
7
8
- val springBootVersions: List <String > = listOf (" 1_5" , " 2_1" , " 2_2" , " 2_3" , " 2_4" , " 2_5" , " 2_6" , " 2_7" , " 3_0" )
8
+ val springBootVersions: List <String > = listOf (" 1_5" , " 2_1" , " 2_2" , " 2_3" , " 2_4" , " 2_5" , " 2_6" , " 2_7" , " 3_0" , " 3_2 " )
9
9
val springSecurityVersions: List <String > = listOf (" 5_7" , " 5_8" , " 6_2" )
10
10
11
11
val sourceSetNames: Map <String , List <String >> = mapOf (
@@ -109,7 +109,6 @@ recipeDependencies {
109
109
110
110
val rewriteVersion = rewriteRecipe.rewriteVersion.get()
111
111
112
- var springBoot3Version = " 3.0.0-RC1"
113
112
dependencies {
114
113
implementation(" org.openrewrite:rewrite-java:${rewriteVersion} " )
115
114
implementation(" org.openrewrite:rewrite-xml:${rewriteVersion} " )
@@ -205,8 +204,8 @@ dependencies {
205
204
" testWithSpringBoot_2_7RuntimeOnly" (" org.springframework.security:spring-security-ldap:5.7.+" )
206
205
" testWithSpringBoot_2_7RuntimeOnly" (" org.apache.tomcat.embed:tomcat-embed-core:9.0.+" )
207
206
208
- " testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.boot:spring-boot-starter:${springBoot3Version} " )
209
- " testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.boot:spring-boot-starter-test:${springBoot3Version} " )
207
+ " testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.boot:spring-boot-starter:3.0+ " )
208
+ " testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.boot:spring-boot-starter-test:3.0+ " )
210
209
" testWithSpringBoot_3_0RuntimeOnly" (" org.springframework:spring-context:6.0.+" )
211
210
" testWithSpringBoot_3_0RuntimeOnly" (" org.springframework:spring-web:6.0.+" )
212
211
" testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.batch:spring-batch-core:5.+" )
@@ -216,6 +215,9 @@ dependencies {
216
215
" testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.security:spring-security-web:6.0.+" )
217
216
" testWithSpringBoot_3_0RuntimeOnly" (" org.springframework.security:spring-security-ldap:6.0.+" )
218
217
218
+ " testWithSpringBoot_3_2RuntimeOnly" (" org.springframework.boot:spring-boot-starter:3.2+" )
219
+ " testWithSpringBoot_3_2RuntimeOnly" (" org.springframework.boot:spring-boot-starter-test:3.2+" )
220
+
219
221
" testWithSpringSecurity_5_7RuntimeOnly" (" org.springframework:spring-context:5.3.+" )
220
222
" testWithSpringSecurity_5_7RuntimeOnly" (" org.springframework.boot:spring-boot-starter:2.7.+" )
221
223
" testWithSpringSecurity_5_7RuntimeOnly" (" org.springframework.boot:spring-boot:2.7.+" )
0 commit comments