Skip to content

Commit 1017340

Browse files
committed
Merge branch 'master' into dev
2 parents 901f247 + 6e755b0 commit 1017340

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
What is Gradle?
22
===============
33

4-
Gradle is a standard build tool that is used for building and deploying primarily Java applications, but it can be used for any codebase.
5-
The full user guide for Gradle is available at http://www.gradle.org/docs/current/userguide/userguide.html.
4+
Gradle is a standard build tool that is used for building and deploying primarily Java applications, but it can be used for any codebase. Check out the [Gradle user guide](http://www.gradle.org/docs/current/userguide/userguide.html) for more information.
65

76
What is ml-gradle?
87
=========
9-
ml-gradle is a [Gradle plugin](http://www.gradle.org/plugins "") that supports a number of tasks pertaining to deploying an
8+
ml-gradle is a [Gradle plugin](https://plugins.gradle.org/ "") that supports a number of tasks pertaining to deploying an
109
application to MarkLogic and interacting with other features of MarkLogic via a Gradle build file. The bulk of the
1110
functionality provided by ml-gradle is actually in [ml-app-deployer](https://github.com/rjrudin/ml-app-deployer) - ml-gradle
1211
is just intended to be a thin wrapper around this library, exposing its functionality via Gradle tasks and properties.

examples/local-testing-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set this to the version you used when running
22
# "gradle -Pversion=(something) publishToMavenLocal" on your local ml-gradle repo
3-
mlGradleVersion=3.0-beta2
3+
mlGradleVersion=3.0.0
44

55
mlHost=localhost
66
mlAppName=example

examples/sample-project/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
jcenter()
99
}
1010
dependencies {
11-
classpath "com.marklogic:ml-gradle:3.0-alpha1"
11+
classpath "com.marklogic:ml-gradle:3.0.0"
1212
}
1313
}
1414

@@ -53,7 +53,7 @@ configurations {
5353
*/
5454
dependencies {
5555
// Needed to compile and run the JUnit tests
56-
testCompile "com.marklogic:ml-junit:3.0-alpha1"
56+
testCompile "com.marklogic:ml-junit:3.0.0"
5757
testCompile "com.jayway.restassured:rest-assured:2.4.1"
5858

5959
// corb jar available from jcenter

examples/sample-project/src/test/java/sample/GetClientConfigTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import org.junit.Test;
44

5-
import com.marklogic.client.ext.helper.DatabaseClientConfig;
5+
import com.marklogic.client.ext.DatabaseClientConfig;
66

77
public class GetClientConfigTest extends AbstractSampleProjectTest {
88

examples/sample-project/src/test/java/sample/SampleProjectTestConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import org.springframework.context.annotation.Configuration;
55
import org.springframework.context.annotation.PropertySource;
66

7-
import com.marklogic.client.ext.helper.DatabaseClientConfig;
7+
import com.marklogic.client.ext.DatabaseClientConfig;
88
import com.marklogic.junit.spring.BasicTestConfig;
99

1010
@Configuration

examples/sample-project/src/test/java/sample/SearchDocumentsViaRestAssuredTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import com.jayway.restassured.RestAssured;
1010
import com.jayway.restassured.path.json.JsonPath;
1111
import com.marklogic.client.document.XMLDocumentManager;
12-
import com.marklogic.client.ext.helper.DatabaseClientConfig;
12+
import com.marklogic.client.ext.DatabaseClientConfig;
1313
import com.marklogic.client.io.DocumentMetadataHandle;
1414
import com.marklogic.client.io.Format;
1515
import com.marklogic.client.io.StringHandle;

0 commit comments

Comments
 (0)