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
8 changes: 4 additions & 4 deletions examples/data-services/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id "java"
id "net.saliman.properties" version "1.5.2"
id "com.marklogic.ml-gradle" version "6.0.0"
id 'com.marklogic.ml-development-tools' version '7.2.0'
id "com.marklogic.ml-gradle" version "6.0.1"
id 'com.marklogic.ml-development-tools' version '8.0.0'
}

task generateHelloWorld(type: com.marklogic.client.tools.gradle.EndpointProxiesGenTask) {
Expand All @@ -20,12 +20,12 @@ test {

dependencies {
implementation 'org.slf4j:slf4j-api:2.0.17'
implementation 'com.marklogic:marklogic-client-api:7.2.0'
implementation 'com.marklogic:marklogic-client-api:8.0.0'

testImplementation "org.junit.jupiter:junit-jupiter:5.12.2"

// Force usage of logback for logging
testImplementation "ch.qos.logback:logback-classic:1.5.18"
testImplementation "ch.qos.logback:logback-classic:1.5.19"
testImplementation "org.slf4j:jcl-over-slf4j:2.0.17"
testImplementation "org.slf4j:slf4j-api:2.0.17"
}
2 changes: 1 addition & 1 deletion examples/mlcp-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
// Since MLCP 11.2, have not been able to get logging to work via a log4j2.xml or
// log4j2.properties file. MLCP 11.2 removed logback as a direct dependency. Adding it back
// results in logging working correctly.
mlcp "ch.qos.logback:logback-classic:1.5.18"
mlcp "ch.qos.logback:logback-classic:1.5.19"

/**
* mlcp uses logback for logging, and without a logback configuration file, no MLCP logging will appear.
Expand Down