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

Commit 937bba0

Browse files
committed
Merge branch 'master' into dev
2 parents c1ef615 + 6273b76 commit 937bba0

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "com.marklogic"
11-
version = "4.6-SNAPSHOT"
11+
version = "4.6.0"
1212

1313
java {
1414
sourceCompatibility = 1.8
@@ -24,7 +24,7 @@ repositories {
2424
}
2525

2626
dependencies {
27-
api 'com.marklogic:ml-javaclient-util:4.6-SNAPSHOT'
27+
api 'com.marklogic:ml-javaclient-util:4.6.0'
2828
api 'org.springframework:spring-web:5.3.29'
2929
api 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
3030

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is not intended to be used to build this project.
1212
<modelVersion>4.0.0</modelVersion>
1313
<groupId>com.marklogic</groupId>
1414
<artifactId>ml-app-deployer</artifactId>
15-
<version>4.5.2</version>
15+
<version>4.6.0</version>
1616
<name>com.marklogic:ml-app-deployer</name>
1717
<description>Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic</description>
1818
<url>https://github.com/marklogic/ml-app-deployer</url>
@@ -40,19 +40,19 @@ It is not intended to be used to build this project.
4040
<dependency>
4141
<groupId>com.marklogic</groupId>
4242
<artifactId>ml-javaclient-util</artifactId>
43-
<version>4.5.1</version>
43+
<version>4.6.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.springframework</groupId>
4848
<artifactId>spring-web</artifactId>
49-
<version>5.3.27</version>
49+
<version>5.3.29</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>com.fasterxml.jackson.core</groupId>
5454
<artifactId>jackson-databind</artifactId>
55-
<version>2.14.1</version>
55+
<version>2.15.2</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
<dependency>

src/main/java/com/marklogic/mgmt/resource/forests/ForestManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ public ForestManager(ManageClient client) {
6969
*/
7070
public Map<String, List<Forest>> getMapOfPrimaryForests() {
7171
JsonNode json = new ConfigurationManager(getManageClient()).getResourcesAsJson("forest").getBody();
72-
7372
// Config is an array of objects, and it will have a single object based on our request.
7473
ArrayNode allPrimaryForests = (ArrayNode) json.get("config").get(0).get("forest");
7574
ResourceMapper mapper = new DefaultResourceMapper(new API(getManageClient()));

0 commit comments

Comments
 (0)