@@ -10,7 +10,7 @@ plugins {
1010}
1111
1212group = " com.marklogic"
13- version = " 4.3.7 "
13+ version = " 4.4-SNAPSHOT "
1414
1515java {
1616 sourceCompatibility = 1.8
@@ -22,24 +22,24 @@ repositories {
2222}
2323
2424dependencies {
25- api ' com.marklogic:marklogic-client-api:5.5.4 '
26- api ' com.marklogic:marklogic-xcc:10.0.9.5'
27- api ' org.springframework:spring-context:5.3.24'
25+ api ' com.marklogic:marklogic-client-api:6.0.0 '
26+ api ' com.marklogic:marklogic-xcc:10.0.9.5'
27+ api ' org.springframework:spring-context:5.3.24'
2828
29- implementation ' org.jdom:jdom2:2.0.6.1'
29+ implementation ' org.jdom:jdom2:2.0.6.1'
3030
31- implementation ' com.fasterxml.jackson.core:jackson-databind:2.12.7.1 '
31+ implementation ' com.fasterxml.jackson.core:jackson-databind:2.13.4.2 '
3232
3333 // This is currently an implementation dependency, though perhaps should be an api dependency due to its usage in
3434 // LoggingObject; not clear yet on whether the protected Logger in that class should make this an api dependency or not
3535 implementation ' org.slf4j:slf4j-api:1.7.36'
3636
37- testImplementation ' org.junit.jupiter:junit-jupiter:5.9.0 '
37+ testImplementation ' org.junit.jupiter:junit-jupiter:5.9.1 '
3838 testImplementation ' org.springframework:spring-test:5.3.24'
3939 testImplementation ' org.mockito:mockito-core:4.9.0'
4040
41- // Used for testing loading modules from the classpath
42- testImplementation files(" lib/modules.jar" )
41+ // Used for testing loading modules from the classpath
42+ testImplementation files(" lib/modules.jar" )
4343
4444 // Forcing Spring to use logback instead of commons-logging
4545 testImplementation " ch.qos.logback:logback-classic:1.3.5" // Not using 1.4.x yet as it requires Java 11
@@ -58,15 +58,15 @@ dependencies {
5858
5959test {
6060 useJUnitPlatform()
61- testLogging {
62- events ' started' ,' passed' , ' skipped' , ' failed'
63- exceptionFormat ' full'
64- }
61+ testLogging {
62+ events ' started' , ' passed' , ' skipped' , ' failed'
63+ exceptionFormat ' full'
64+ }
6565}
6666
6767task sourcesJar (type : Jar , dependsOn : classes) {
68- classifier ' sources'
69- from sourceSets. main. allSource
68+ classifier ' sources'
69+ from sourceSets. main. allSource
7070}
7171
7272task javadocJar (type : Jar , dependsOn : javadoc) {
@@ -99,8 +99,8 @@ task generatePomForDependencyGraph(dependsOn: "generatePomFileForMainJavaPublica
9999}
100100
101101publishing {
102- publications {
103- mainJava(MavenPublication ) {
102+ publications {
103+ mainJava(MavenPublication ) {
104104 pom {
105105 name = " ${ group} :${ project.name} "
106106 description = " Library that adds functionality on top of the MarkLogic Java Client"
@@ -127,11 +127,11 @@ publishing {
127127 developerConnection
= " scm:[email protected] :marklogic-community/${ project.name} .git" 128128 }
129129 }
130- from components. java
131- artifact sourcesJar
132- artifact javadocJar
133- }
134- }
130+ from components. java
131+ artifact sourcesJar
132+ artifact javadocJar
133+ }
134+ }
135135 repositories {
136136 maven {
137137 name = " central"
0 commit comments