Skip to content

Commit

Permalink
marklogic#48 Upgraded MarkLogic Java API to 5.4.0
Browse files Browse the repository at this point in the history
Upgraded SLF4J and Logback dependencies to the same versions that
`marklogic-client-api:5.4.0` uses.
  • Loading branch information
froderystad-digdir committed Jun 23, 2021
1 parent 343a332 commit e7144bc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions marklogic-rdf4j-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ apply plugin: 'idea'
apply plugin: 'java'

configure(allprojects){
ext.slf4jVersion = '1.7.2'
ext.logbackVersion = '1.0.9'
ext.slf4jVersion = '1.7.25'
ext.logbackVersion = '1.2.3'
}

dependencies {
compile project (':marklogic-rdf4j')
compile('org.slf4j:slf4j-api:1.7.10')
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "ch.qos.logback:logback-classic:$logbackVersion"
compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"
}
Expand Down
6 changes: 3 additions & 3 deletions marklogic-rdf4j-performance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ apply plugin: 'java'
apply plugin: 'maven'

configure(allprojects){
ext.slf4jVersion = '1.7.2'
ext.logbackVersion = '1.0.9'
ext.slf4jVersion = '1.7.25'
ext.logbackVersion = '1.2.3'
}

repositories {
Expand All @@ -30,7 +30,7 @@ repositories {

dependencies {
compile project (':marklogic-rdf4j')
compile('org.slf4j:slf4j-api:1.7.10')
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "ch.qos.logback:logback-classic:$logbackVersion"
compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"

Expand Down
8 changes: 4 additions & 4 deletions marklogic-rdf4j/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jacoco{toolVersion="0.7.4.201502262128"}
compileJava.options.encoding = 'UTF-8'

configure(allprojects){
ext.slf4jVersion = '1.7.2'
ext.logbackVersion = '1.0.9'
ext.slf4jVersion = '1.7.25'
ext.logbackVersion = '1.2.3'
}

sourceCompatibility = "1.8"
Expand All @@ -43,13 +43,13 @@ jacocoTestReport {
dependencies {
compile('org.eclipse.rdf4j:rdf4j-runtime:2.4.3')

compile('com.marklogic:marklogic-client-api:4.2.0') {
compile('com.marklogic:marklogic-client-api:5.4.0') {
exclude(group: 'org.slf4j')
exclude(group: 'ch.qos.logback')
exclude(group: 'javax.ws.rs')
}
compile "javax.ws.rs:javax.ws.rs-api:2.1@jar"
compile('org.slf4j:slf4j-api:1.7.10')
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "ch.qos.logback:logback-classic:$logbackVersion"
compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"

Expand Down

0 comments on commit e7144bc

Please sign in to comment.