diff --git a/spring-binding/spring-binding.gradle b/spring-binding/spring-binding.gradle index 588540f6..2b47071b 100644 --- a/spring-binding/spring-binding.gradle +++ b/spring-binding/spring-binding.gradle @@ -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") -} \ No newline at end of file + 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") +} diff --git a/spring-faces/spring-faces.gradle b/spring-faces/spring-faces.gradle index 5718d5dc..1e440a34 100644 --- a/spring-faces/spring-faces.gradle +++ b/spring-faces/spring-faces.gradle @@ -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") } diff --git a/spring-webflow/spring-webflow.gradle b/spring-webflow/spring-webflow.gradle index fe3dc1f5..7c2ce936 100644 --- a/spring-webflow/spring-webflow.gradle +++ b/spring-webflow/spring-webflow.gradle @@ -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") -} \ No newline at end of file + 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") +}