Adapt all SBDG module Gradle build files to Gradle 7.3.

This commit is contained in:
John Blum
2022-01-12 12:45:30 -08:00
parent a1d2c4b35e
commit 3640e1c2a8
24 changed files with 151 additions and 153 deletions

View File

@@ -8,10 +8,10 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Actuator
dependencies {
compile project(":spring-geode-starter-actuator")
compile project(":spring-geode-starter-test")
implementation project(":spring-geode-starter-actuator")
implementation project(":spring-geode-starter-test")
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-web"
}

View File

@@ -10,16 +10,16 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Auto-Con
dependencies {
compile project(":spring-geode-starter")
compile project(":spring-geode-starter-test")
implementation project(":spring-geode-starter")
implementation project(":spring-geode-starter-test")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
testCompile "org.springframework.boot:spring-boot-starter-test"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}
processResources {

View File

@@ -8,13 +8,13 @@ description = "Spring Geode Sample demonstrating Apache Geode security configure
dependencies {
compile project(":spring-geode-starter")
compile project(":spring-geode-starter-test")
implementation project(":spring-geode-starter")
implementation project(":spring-geode-starter-test")
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-web"
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
}
bootJar {

View File

@@ -4,18 +4,16 @@ description = "Spring Geode Sample demonstrating Spring Session with Apache Geod
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-web"
// runtime project(":spring-geode-starter-session")
runtimeOnly "org.springframework.boot:spring-boot-starter-thymeleaf"
runtime "org.springframework.boot:spring-boot-starter-thymeleaf"
testImplementation project(":spring-geode-starter-session")
testImplementation project(":spring-geode-starter-test")
testCompile project(":spring-geode-starter-session")
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -8,20 +8,20 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-web"
runtime "org.hsqldb:hsqldb"
runtimeOnly "org.hsqldb:hsqldb"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.awaitility:awaitility:$awaitilityVersion"
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -8,17 +8,17 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-web"
runtime "org.hsqldb:hsqldb"
runtimeOnly "org.hsqldb:hsqldb"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -4,13 +4,13 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-web"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -8,15 +8,15 @@ description = "Spring Geode Sample for Multi-Site Caching."
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-web"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -8,18 +8,18 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
dependencies {
compile project(":apache-geode-extensions")
compile project(":spring-geode-starter")
implementation project(":apache-geode-extensions")
implementation project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-web"
runtime "org.springframework.boot:spring-boot-starter-jetty"
runtimeOnly "org.springframework.boot:spring-boot-starter-jetty"
testCompile project (":spring-geode-starter-test")
testImplementation project (":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -10,15 +10,15 @@ description = "Spring Geode Sample for Getting Started with Spring Boot for Apac
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-web"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-web"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -8,15 +8,15 @@ description = "Quick Start for Spring Boot for Apache Geode"
dependencies {
compile project(":spring-geode-starter")
implementation project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
//runtime project(":spring-geode-starter-logging")
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}