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

Commit 2936107

Browse files
committed
Now using 2.5 of ml-javaclient-util and ml-junit
1 parent 6163b7c commit 2936107

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.mdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# ml-app-deployer releases
22

33

4-
## 2.0rc2 - TBD
4+
## 2.0rc2 - 2016-01-03
55

6+
* Depends on 2.5 of ml-javaclient-util and ml-junit
67
* [#73](https://github.com/rjrudin/ml-app-deployer/issues/73) Added support for setting a FileFilter on AppConfig for controlling what assets are loaded
78

89
## 2.0rc1 - 2015-12-23

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ targetCompatibility = "1.7"
1111

1212
repositories {
1313
jcenter()
14+
maven {url "http://developer.marklogic.com/maven2/"}
1415
}
1516

1617
dependencies {
17-
compile 'com.marklogic:ml-javaclient-util:2.4'
18+
compile 'com.marklogic:ml-javaclient-util:2.5'
1819
compile 'jaxen:jaxen:1.1.6'
1920
compile 'org.apache.httpcomponents:httpclient:4.3.5'
2021
compile 'org.springframework:spring-web:4.1.5.RELEASE'
21-
testCompile 'com.marklogic:ml-junit:2.4'
22+
testCompile 'com.marklogic:ml-junit:2.5'
2223
}
2324

2425
// This ensures that Gradle includes in the published jar any non-java files under src/main/java
@@ -59,7 +60,7 @@ if (project.hasProperty("myBintrayUser")) {
5960
licenses = ['Apache-2.0']
6061
vcsUrl = 'https://github.com/rjrudin/' + project.name + '.git'
6162
version {
62-
name = "2.0rc1"
63+
name = "2.0rc2"
6364
released = new Date()
6465
}
6566
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
group=com.marklogic
22
publishUrl=file:../gh-pages-marklogic-java/releases
33
javadocsDir=../gh-pages-marklogic-java/javadocs
4-
version=2.0rc1
4+
version=2.0rc2
55

66

77
# Old CHANGELOG

src/main/java/com/marklogic/mgmt/api/API.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ protected <T extends Resource> T getResource(String resourceNameOrId, ResourceMa
360360

361361
protected <T extends Resource> T buildFromJson(String json, Class<T> clazz) {
362362
try {
363-
T resource = getObjectMapper().readerFor(clazz).readValue(json);
363+
T resource = getObjectMapper().reader(clazz).readValue(json);
364364
resource.setApi(this);
365365
resource.setObjectMapper(getObjectMapper());
366366
return resource;

0 commit comments

Comments
 (0)