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
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ subprojects {
}

repositories {
mavenLocal()
mavenCentral()

// Needed so that ml-development-tools can resolve snapshots of marklogic-client-api.
Expand Down
2 changes: 1 addition & 1 deletion marklogic-client-api-functionaltests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {

testImplementation 'org.apache.commons:commons-lang3:3.19.0'

testImplementation "com.marklogic:ml-app-deployer:6.1.0"
testImplementation "com.marklogic:ml-app-deployer:6.2-SNAPSHOT"
Copy link

Copilot AI Oct 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a SNAPSHOT dependency in production code introduces instability, as the artifact can change without notice. Consider using a stable release version instead, or document why a SNAPSHOT is required.

Suggested change
testImplementation "com.marklogic:ml-app-deployer:6.2-SNAPSHOT"
testImplementation "com.marklogic:ml-app-deployer:6.2.0"

Copilot uses AI. Check for mistakes.

testImplementation 'ch.qos.logback:logback-classic:1.5.19'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.0'
Expand Down
4 changes: 2 additions & 2 deletions marklogic-client-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
compileOnly 'org.dom4j:dom4j:2.2.0'
compileOnly 'com.google.code.gson:gson:2.13.2'

testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
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'
Expand All @@ -46,7 +46,7 @@ dependencies {
testImplementation 'org.apache.commons:commons-lang3:3.19.0'

// Allows talking to the Manage API.
testImplementation "com.marklogic:ml-app-deployer:6.1.0"
testImplementation "com.marklogic:ml-app-deployer:6.2-SNAPSHOT"
Copy link

Copilot AI Oct 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a SNAPSHOT dependency in production code introduces instability, as the artifact can change without notice. Consider using a stable release version instead, or document why a SNAPSHOT is required.

Suggested change
testImplementation "com.marklogic:ml-app-deployer:6.2-SNAPSHOT"
testImplementation "com.marklogic:ml-app-deployer:6.2.0"

Copilot uses AI. Check for mistakes.

testImplementation "org.mockito:mockito-core:5.20.0"
testImplementation "org.mockito:mockito-inline:5.2.0"
Expand Down
2 changes: 1 addition & 1 deletion ml-development-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
// this project.
testImplementation 'junit:junit:4.13.2'
testImplementation 'xmlunit:xmlunit:1.6'
testImplementation 'org.xmlunit:xmlunit-legacy:2.10.4'
testCompileOnly gradleTestKit()

testImplementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
Expand Down
4 changes: 2 additions & 2 deletions test-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
}

dependencies {
implementation "io.undertow:undertow-core:2.3.19.Final"
implementation "io.undertow:undertow-servlet:2.3.19.Final"
implementation "io.undertow:undertow-core:2.3.20.Final"
implementation "io.undertow:undertow-servlet:2.3.20.Final"
implementation 'org.slf4j:slf4j-api:2.0.17'
implementation 'ch.qos.logback:logback-classic:1.5.19'
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
Expand Down