1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Add JUnit 5 Dependencies

This commit is contained in:
Rob Winch
2021-07-06 17:22:10 -05:00
parent a61057d66c
commit 1047e09fee
5 changed files with 15 additions and 4 deletions
@@ -77,7 +77,12 @@ public class DependencySetPlugin implements Plugin<Project> {
"junit:junit",
"org.mockito:mockito-core",
"org.springframework:spring-test",
"org.assertj:assertj-core"
"org.assertj:assertj-core",
"org.junit.jupiter:junit-jupiter-api",
"org.junit.jupiter:junit-jupiter-params",
"org.junit.jupiter:junit-jupiter-engine",
"org.mockito:mockito-core",
"org.mockito:mockito-junit-jupiter"
]
project.ext.jstlDependencies = [
@@ -704,7 +704,11 @@ def deps = [
"xml-apis:xml-apis" : "1.4.01",
"xmlunit:xmlunit" : "1.6",
"xom:xom" : "1.2.5",
"org.gebish:geb-spock" : "1.1.1"
"org.gebish:geb-spock" : "1.1.1",
"org.junit.jupiter:junit-jupiter-api" : "5.7.2",
"org.junit.jupiter:junit-jupiter-params" : "5.7.2",
"org.junit.jupiter:junit-jupiter-engine" : "5.7.2",
"org.mockito:mockito-junit-jupiter" : "3.11.2"
]
configurations.all {
@@ -1,7 +1,7 @@
apply plugin: 'io.spring.convention.spring-module'
dependencies {
management platform('io.spring.platform:platform-bom:Brussels-RELEASE')
management platform('org.springframework.boot:spring-boot-dependencies:2.5.2')
compile 'org.springframework:spring-web'
compile 'org.springframework:spring-core'
testCompile 'junit:junit'
@@ -1,7 +1,7 @@
apply plugin: 'io.spring.convention.spring-module'
dependencies {
management platform('io.spring.platform:platform-bom:Brussels-RELEASE')
management platform('org.springframework.boot:spring-boot-dependencies:2.5.2')
optional 'ch.qos.logback:logback-classic'
testCompile 'junit:junit'
}