Update Gradle to 7.2

Closes gh-1944
This commit is contained in:
Eleftheria Stein
2021-11-02 14:28:31 +01:00
parent a5033f721c
commit 5fdbfce4c2
34 changed files with 561 additions and 512 deletions

View File

@@ -4,24 +4,24 @@ plugins {
}
dependencies {
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
compile "org.webjars:webjars-taglib"
compile "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api"
compile "org.apache.taglibs:taglibs-standard-jstlel"
compile "org.slf4j:slf4j-api"
compile "org.slf4j:jcl-over-slf4j"
compile "org.slf4j:log4j-over-slf4j"
compile "ch.qos.logback:logback-classic"
compile "org.testcontainers:testcontainers"
implementation project(':spring-session-data-redis')
implementation "org.springframework:spring-web"
implementation "io.lettuce:lettuce-core"
implementation "org.webjars:bootstrap"
implementation "org.webjars:webjars-taglib"
implementation "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api"
implementation "org.apache.taglibs:taglibs-standard-jstlel"
implementation "org.slf4j:slf4j-api"
implementation "org.slf4j:jcl-over-slf4j"
implementation "org.slf4j:log4j-over-slf4j"
implementation "ch.qos.logback:logback-classic"
implementation "org.testcontainers:testcontainers"
providedCompile "javax.servlet:javax.servlet-api"
testCompile "org.assertj:assertj-core"
testCompile "org.junit.jupiter:junit-jupiter-api"
testRuntime "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
integrationTestCompile "org.seleniumhq.selenium:htmlunit-driver"
integrationTestCompile "org.seleniumhq.selenium:selenium-support"