Skip to content

Commit 61a9353

Browse files
committed
Explicitly set the version of the Spring Boot dependency
Closes gh-102
1 parent aa2d6ac commit 61a9353

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

component/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies {
1111
compileOnly "org.graceframework:grace-boot:$graceVersion"
1212
api project(":views-core")
1313

14-
api "org.springframework.boot:spring-boot-autoconfigure"
15-
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor"
16-
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
14+
api "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion"
15+
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:$springBootVersion"
16+
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
1717
testImplementation "org.graceframework:grace-test-support:$graceVersion"
1818
}
1919

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ junitJupiterVersion=5.10.5
1717
junitPlatformVersion=1.10.5
1818
servletApiVersion=6.0.0
1919
spockVersion=2.3-groovy-4.0
20+
springBootVersion=3.3.10
2021
springDependencyManagementPluginVersion=1.1.7
2122

2223
org.gradle.caching=true

json/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies {
1313
compileOnly "org.graceframework:grace-boot:$graceVersion"
1414
api project(":views-core")
1515

16-
api "org.springframework.boot:spring-boot-autoconfigure"
17-
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor"
18-
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
16+
api "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion"
17+
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:$springBootVersion"
18+
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
1919
api "org.graceframework:grace-datastore-gorm:$gormVersion"
2020
testImplementation "org.graceframework:grace-test-support:$graceVersion"
2121
testImplementation project(":views-json-testing-support")

markup/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ dependencies {
99
compileOnly "org.graceframework:grace-boot:$graceVersion"
1010
api project(":views-core")
1111

12-
api "org.springframework.boot:spring-boot-autoconfigure"
13-
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor"
14-
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
12+
api "org.springframework.boot:spring-boot-autoconfigure:$springBootVersion"
13+
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:$springBootVersion"
14+
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
1515
testImplementation "org.graceframework:grace-test-support:$graceVersion"
1616
}
1717

0 commit comments

Comments
 (0)