@@ -27,12 +27,14 @@ dependencies {
27
27
optional(" javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:1.2.1" )
28
28
optional(" javax.xml.bind:jaxb-api:2.3.1" )
29
29
optional(" javax.websocket:javax.websocket-api:1.1" )
30
- optional(" junit:junit:4.13-beta-3" )
30
+ optional(" junit:junit:4.13-beta-3" ) {
31
+ exclude group : " org.hamcrest" , module : " hamcrest-core"
32
+ }
31
33
optional(" org.junit.jupiter:junit-jupiter-api" )
32
34
optional(" org.testng:testng:6.14.3" )
33
35
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
34
36
optional(" org.codehaus.groovy:groovy:${ groovyVersion} " )
35
- optional(" org.hamcrest:hamcrest-core:1.3 " )
37
+ optional(" org.hamcrest:hamcrest:2.1 " )
36
38
optional(" org.apache.taglibs:taglibs-standard-jstlel:1.2.5" ) {
37
39
exclude group : " org.apache.taglibs" , module : " taglibs-standard-spec"
38
40
}
@@ -46,7 +48,9 @@ dependencies {
46
48
exclude group : " commons-logging" , module : " commons-logging"
47
49
exclude group : " io.netty" , module : " netty"
48
50
}
49
- optional(" org.xmlunit:xmlunit-matchers:2.6.2" )
51
+ optional(" org.xmlunit:xmlunit-matchers:2.6.2" ) {
52
+ exclude group : " org.hamcrest" , module : " hamcrest-core"
53
+ }
50
54
optional(" org.skyscreamer:jsonassert:1.5.0" )
51
55
optional(" com.jayway.jsonpath:json-path:2.4.0" )
52
56
optional(" org.jetbrains.kotlin:kotlin-reflect" )
@@ -63,7 +67,9 @@ dependencies {
63
67
testCompile(" javax.mail:javax.mail-api:1.6.2" )
64
68
testCompile(" org.hibernate:hibernate-core:5.4.3.Final" )
65
69
testCompile(" org.hibernate:hibernate-validator:6.0.17.Final" )
66
- testCompile(" org.junit.platform:junit-platform-runner" )
70
+ testCompile(" org.junit.platform:junit-platform-runner" ) {
71
+ exclude group : " junit" , module : " junit"
72
+ }
67
73
testCompile(" org.junit.platform:junit-platform-testkit" )
68
74
testCompile(" org.junit.jupiter:junit-jupiter-params" )
69
75
testCompile(" com.fasterxml.jackson.core:jackson-databind:${ jackson2Version} " )
@@ -77,9 +83,13 @@ dependencies {
77
83
exclude group : " commons-logging" , module : " commons-logging"
78
84
}
79
85
testCompile(" io.projectreactor.netty:reactor-netty" )
80
- testCompile(" de.bechte.junit:junit-hierarchicalcontextrunner:4.12.1" )
86
+ testCompile(" de.bechte.junit:junit-hierarchicalcontextrunner:4.12.1" ) {
87
+ exclude group : " junit" , module : " junit"
88
+ }
81
89
testRuntime(" org.junit.jupiter:junit-jupiter-engine" )
82
- testRuntime(" org.junit.vintage:junit-vintage-engine" )
90
+ testRuntime(" org.junit.vintage:junit-vintage-engine" ) {
91
+ exclude group : " junit" , module : " junit"
92
+ }
83
93
testRuntime(" org.glassfish:javax.el:3.0.1-b08" )
84
94
testRuntime(" com.sun.xml.bind:jaxb-core:2.3.0.1" )
85
95
testRuntime(" com.sun.xml.bind:jaxb-impl:2.3.0.1" )
0 commit comments