Update dependency configurations for compatibility with Gradle 7.0
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
description = "Spring Binding"
|
||||
|
||||
dependencies {
|
||||
compile("org.springframework:spring-context")
|
||||
implementation("org.springframework:spring-context")
|
||||
|
||||
compileOnly("javax.el:javax.el-api")
|
||||
|
||||
testCompile("org.junit.jupiter:junit-jupiter")
|
||||
testCompile("org.hamcrest:hamcrest")
|
||||
testCompile("org.easymock:easymock")
|
||||
testCompile("org.apache.tomcat:tomcat-jasper-el")
|
||||
testRuntime("org.apache.logging.log4j:log4j-core")
|
||||
testRuntime("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntime("org.apache.logging.log4j:log4j-jul")
|
||||
}
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
testImplementation("org.hamcrest:hamcrest")
|
||||
testImplementation("org.easymock:easymock")
|
||||
testImplementation("org.apache.tomcat:tomcat-jasper-el")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-jul")
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
description = "Spring Faces"
|
||||
|
||||
dependencies {
|
||||
compile(project(":spring-binding"))
|
||||
compile(project(":spring-webflow"))
|
||||
compile("org.springframework:spring-web")
|
||||
compile("org.springframework:spring-webmvc")
|
||||
implementation(project(":spring-binding"))
|
||||
implementation(project(":spring-webflow"))
|
||||
implementation("org.springframework:spring-web")
|
||||
implementation("org.springframework:spring-webmvc")
|
||||
|
||||
compileOnly("javax.el:javax.el-api")
|
||||
compileOnly("javax.servlet:javax.servlet-api")
|
||||
@@ -17,16 +17,16 @@ dependencies {
|
||||
optional("org.springframework.security:spring-security-web")
|
||||
optional("org.springframework.security:spring-security-taglibs")
|
||||
|
||||
testCompile("org.junit.jupiter:junit-jupiter")
|
||||
testCompile("org.easymock:easymock")
|
||||
testCompile("org.apache.myfaces.test:myfaces-test22")
|
||||
testCompile("org.apache.tomcat:tomcat-jasper-el")
|
||||
testCompile("org.springframework:spring-test")
|
||||
testCompile("javax.servlet:javax.servlet-api")
|
||||
testCompile("com.sun.faces:jsf-api")
|
||||
testCompile("com.sun.faces:jsf-impl")
|
||||
testCompile("org.apache.myfaces.core:myfaces-impl")
|
||||
testRuntime("org.apache.logging.log4j:log4j-core")
|
||||
testRuntime("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntime("org.apache.logging.log4j:log4j-jul")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
testImplementation("org.easymock:easymock")
|
||||
testImplementation("org.apache.myfaces.test:myfaces-test22")
|
||||
testImplementation("org.apache.tomcat:tomcat-jasper-el")
|
||||
testImplementation("org.springframework:spring-test")
|
||||
testImplementation("javax.servlet:javax.servlet-api")
|
||||
testImplementation("com.sun.faces:jsf-api")
|
||||
testImplementation("com.sun.faces:jsf-impl")
|
||||
testImplementation("org.apache.myfaces.core:myfaces-impl")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-jul")
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
description = "Spring Web Flow"
|
||||
|
||||
dependencies {
|
||||
compile(project(":spring-binding"))
|
||||
compile("org.springframework:spring-web")
|
||||
compile("org.springframework:spring-webmvc")
|
||||
implementation(project(":spring-binding"))
|
||||
implementation("org.springframework:spring-web")
|
||||
implementation("org.springframework:spring-webmvc")
|
||||
|
||||
compileOnly("javax.el:javax.el-api")
|
||||
compileOnly("javax.servlet:javax.servlet-api")
|
||||
@@ -20,21 +20,21 @@ dependencies {
|
||||
optional("org.apache.tiles:tiles-el")
|
||||
optional("org.apache.tiles:tiles-extras")
|
||||
|
||||
testCompile("junit:junit")
|
||||
testCompile("org.junit.jupiter:junit-jupiter")
|
||||
testCompile("org.easymock:easymock")
|
||||
testCompile("org.apache.tomcat:tomcat-jasper-el")
|
||||
testCompile("org.springframework:spring-aop")
|
||||
testCompile("org.springframework:spring-jdbc")
|
||||
testCompile("org.springframework:spring-test")
|
||||
testCompile("org.hibernate:hibernate-entitymanager")
|
||||
testCompile("org.hibernate:hibernate-validator")
|
||||
testCompile("org.hsqldb:hsqldb")
|
||||
testCompile("javax.servlet.jsp:javax.servlet.jsp-api")
|
||||
testCompile("javax.servlet:jstl")
|
||||
testCompile("javax.servlet:javax.servlet-api")
|
||||
testCompile("javax.validation:validation-api")
|
||||
testRuntime("org.apache.logging.log4j:log4j-core")
|
||||
testRuntime("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntime("org.apache.logging.log4j:log4j-jul")
|
||||
}
|
||||
testImplementation("junit:junit")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
testImplementation("org.easymock:easymock")
|
||||
testImplementation("org.apache.tomcat:tomcat-jasper-el")
|
||||
testImplementation("org.springframework:spring-aop")
|
||||
testImplementation("org.springframework:spring-jdbc")
|
||||
testImplementation("org.springframework:spring-test")
|
||||
testImplementation("org.hibernate:hibernate-entitymanager")
|
||||
testImplementation("org.hibernate:hibernate-validator")
|
||||
testImplementation("org.hsqldb:hsqldb")
|
||||
testImplementation("javax.servlet.jsp:javax.servlet.jsp-api")
|
||||
testImplementation("javax.servlet:jstl")
|
||||
testImplementation("javax.servlet:javax.servlet-api")
|
||||
testImplementation("javax.validation:validation-api")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
|
||||
testRuntimeOnly("org.apache.logging.log4j:log4j-jul")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user