Upgrade to Gradle 7.4.2 and use java-library plugin

Align with main branch
This commit is contained in:
Rossen Stoyanchev
2022-08-01 13:52:22 +03:00
parent 0d2130244e
commit 9fd8d3eccd
6 changed files with 135 additions and 127 deletions

View File

@@ -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")
}