Add JUnit 5 Dependencies
This commit is contained in:
@@ -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 = [
|
||||
|
||||
+5
-1
@@ -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'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user