Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 054d12f

Browse files
authored
Merge pull request #166 from marklogic-community/feature/165-java-client-6
Bumping to Java Client 6.0.0
2 parents 1483420 + 4e81f7b commit 054d12f

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

build.gradle

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "com.marklogic"
13-
version = "4.3.7"
13+
version = "4.4-SNAPSHOT"
1414

1515
java {
1616
sourceCompatibility = 1.8
@@ -22,24 +22,24 @@ repositories {
2222
}
2323

2424
dependencies {
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

5959
test {
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

6767
task sourcesJar(type: Jar, dependsOn: classes) {
68-
classifier 'sources'
69-
from sourceSets.main.allSource
68+
classifier 'sources'
69+
from sourceSets.main.allSource
7070
}
7171

7272
task javadocJar(type: Jar, dependsOn: javadoc) {
@@ -99,8 +99,8 @@ task generatePomForDependencyGraph(dependsOn: "generatePomFileForMainJavaPublica
9999
}
100100

101101
publishing {
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

Comments
 (0)