File tree Expand file tree Collapse file tree 4 files changed +9
-256
lines changed Expand file tree Collapse file tree 4 files changed +9
-256
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,6 @@ plugins {
19
19
20
20
// The Java plugin is used to compile and run JUnit tests
21
21
id " java"
22
-
23
- // These plugins are used to generate IDE files
24
- id " eclipse"
25
- id " idea"
26
22
}
27
23
28
24
apply plugin : " com.marklogic.ml-gradle"
@@ -48,17 +44,17 @@ configurations {
48
44
corb
49
45
}
50
46
51
- /*
52
- * This expresses dependencies on the ml-java and ml-junit libraries. The former is typically used for application
53
- * code, and the latter supports writing JUnit-based tests. A dependency exists on RestAssured to show an option for
54
- * using that library in tests that must invoke MarkLogic HTTP endpoints.
55
- */
47
+ configurations. all {
48
+ resolutionStrategy. eachDependency { DependencyResolveDetails details ->
49
+ if (details. requested. group. startsWith(' org.springframework' )) {
50
+ details. useVersion ' 6.2.8'
51
+ details. because ' Forcing marklogic-junit5 to use the latest version of Spring to minimize security vulnerabilities.'
52
+ }
53
+ }
54
+ }
55
+
56
56
dependencies {
57
57
testImplementation " com.marklogic:marklogic-junit5:1.5.0"
58
- testImplementation " javax.xml.bind:jaxb-api:2.3.1"
59
- testImplementation " org.glassfish.jaxb:jaxb-runtime:2.3.2"
60
- testImplementation " org.glassfish.jaxb:jaxb-core:2.3.0.1"
61
-
62
58
corb " com.marklogic:marklogic-corb:2.5.5"
63
59
}
64
60
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments