Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions marklogic-client-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ dependencies {

testImplementation 'org.junit.jupiter:junit-jupiter:5.14.0'

// Forcing junit version to avoid vulnerability with older version in xmlunit
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.xmlunit:xmlunit-legacy:2.10.4'
testImplementation project(':examples')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
import com.marklogic.client.io.marker.AbstractWriteHandle;
import com.marklogic.client.row.RowRecord;
import com.marklogic.client.test.Common;
import com.marklogic.client.test.MarkLogicVersion;
import com.marklogic.client.test.junit5.RequiresML11;
import org.junit.Before;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
Expand Down
8 changes: 2 additions & 6 deletions ml-development-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,9 @@ dependencies {
// Sticking with this older version for now as the latest 1.x version introduces breaking changes.
implementation 'com.networknt:json-schema-validator:1.0.88'

// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
// this project.
// Sticking with JUnit 4 as there are no vulnerabilities with it, and shifting to JUnit 5 in this module will be
// a significant and tedious effort.
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.xmlunit:xmlunit-legacy:2.10.4'
testCompileOnly gradleTestKit()

testImplementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
}

// Added to avoid problem where processResources fails because - somehow - the plugin properties file is getting
Expand Down