Adapt all SSDG Gradle module build files to Gradle 7.3.
This commit is contained in:
@@ -4,23 +4,23 @@ apply plugin: 'io.spring.convention.spring-sample-boot'
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
implementation project(':spring-session-data-geode')
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-web") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-web") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile "org.springframework.data:spring-data-geode-test"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-locator"
|
||||
implementation "org.springframework.data:spring-data-geode-test"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-locator"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,27 +3,27 @@ apply plugin: "application"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
implementation project(':spring-session-data-geode')
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-web") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-web") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile "org.springframework.data:spring-data-geode-test"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-locator"
|
||||
implementation "org.springframework.data:spring-data-geode-test"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-locator"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
testCompile seleniumDependencies
|
||||
testImplementation seleniumDependencies
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -4,23 +4,23 @@ apply plugin: "application"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
implementation project(':spring-session-data-geode')
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-web") {
|
||||
implementation("org.springframework.boot:spring-boot-starter-web") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
compile "org.springframework.data:spring-data-geode-test"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-locator"
|
||||
implementation "org.springframework.data:spring-data-geode-test"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-locator"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
|
||||
|
||||
@@ -1,23 +1,27 @@
|
||||
plugins {
|
||||
id "org.gretty" version "4.0.0"
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.convention.spring-sample-war'
|
||||
apply plugin: "gemfire-server"
|
||||
apply plugin: "application"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
compile "org.springframework:spring-web"
|
||||
compile "org.springframework.data:spring-data-geode-test"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-taglib"
|
||||
compile jstlDependencies
|
||||
compile slf4jDependencies
|
||||
implementation project(':spring-session-data-geode')
|
||||
implementation "org.springframework:spring-web"
|
||||
implementation "org.springframework.data:spring-data-geode-test"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-taglib"
|
||||
implementation jstlDependencies
|
||||
implementation slf4jDependencies
|
||||
|
||||
providedCompile "javax.servlet:javax.servlet-api"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile "junit:junit"
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testImplementation "junit:junit"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
|
||||
integrationTestCompile seleniumDependencies
|
||||
|
||||
|
||||
@@ -1,20 +1,24 @@
|
||||
plugins {
|
||||
id "org.gretty" version "4.0.0"
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.convention.spring-sample-war'
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
compile "org.springframework:spring-web"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-taglib"
|
||||
compile jstlDependencies
|
||||
compile slf4jDependencies
|
||||
implementation project(':spring-session-data-geode')
|
||||
implementation "org.springframework:spring-web"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-taglib"
|
||||
implementation jstlDependencies
|
||||
implementation slf4jDependencies
|
||||
|
||||
providedCompile "javax.servlet:javax.servlet-api"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile "junit:junit"
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testImplementation "junit:junit"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
|
||||
integrationTestCompile seleniumDependencies
|
||||
|
||||
|
||||
@@ -1,23 +1,27 @@
|
||||
plugins {
|
||||
id "org.gretty" version "4.0.0"
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.convention.spring-sample-war'
|
||||
apply plugin: "gemfire-server"
|
||||
apply plugin: "application"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
compile "org.springframework:spring-web"
|
||||
compile "org.springframework.data:spring-data-geode-test"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-taglib"
|
||||
compile jstlDependencies
|
||||
compile slf4jDependencies
|
||||
implementation project(':spring-session-data-geode')
|
||||
implementation "org.springframework:spring-web"
|
||||
implementation "org.springframework.data:spring-data-geode-test"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-taglib"
|
||||
implementation jstlDependencies
|
||||
implementation slf4jDependencies
|
||||
|
||||
providedCompile "javax.servlet:javax.servlet-api"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile "junit:junit"
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testImplementation "junit:junit"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
|
||||
integrationTestCompile seleniumDependencies
|
||||
|
||||
|
||||
@@ -1,20 +1,24 @@
|
||||
plugins {
|
||||
id "org.gretty" version "4.0.0"
|
||||
}
|
||||
|
||||
apply plugin: 'io.spring.convention.spring-sample-war'
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-session-data-geode')
|
||||
compile "org.springframework:spring-web"
|
||||
compile "org.webjars:bootstrap"
|
||||
compile "org.webjars:webjars-taglib"
|
||||
compile jstlDependencies
|
||||
compile slf4jDependencies
|
||||
implementation project(':spring-session-data-geode')
|
||||
implementation "org.springframework:spring-web"
|
||||
implementation "org.webjars:bootstrap"
|
||||
implementation "org.webjars:webjars-taglib"
|
||||
implementation jstlDependencies
|
||||
implementation slf4jDependencies
|
||||
|
||||
providedCompile "javax.servlet:javax.servlet-api"
|
||||
|
||||
runtime "org.springframework.shell:spring-shell"
|
||||
runtimeOnly "org.springframework.shell:spring-shell"
|
||||
|
||||
testCompile "junit:junit"
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testImplementation "junit:junit"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
|
||||
integrationTestCompile seleniumDependencies
|
||||
|
||||
|
||||
Reference in New Issue
Block a user