Skip to content

Commit 86f3174

Browse files
author
Rob Rudin
committed
Bumping everyone up to 2.6.0
1 parent 3721087 commit 86f3174

File tree

24 files changed

+26
-26
lines changed

24 files changed

+26
-26
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ First, please note the [Wiki and FAQ](https://github.com/rjrudin/ml-gradle/wiki)
3737
To use ml-gradle right away, you'll need Gradle installed first. And of course you'll need Marklogic installed somewhere - it doesn't have to be the same computer as the one you're running Gradle on. Then create a directory for your project and add a build.gradle file and a gradle.properties file (a Gradle best practice is to put properties in this file so they can be easily overridden). Here's the simplest build.gradle file possible:
3838

3939
plugins {
40-
id "com.marklogic.ml-gradle" version "2.5.0"
40+
id "com.marklogic.ml-gradle" version "2.6.0"
4141
}
4242

4343
And here's a basic gradle.properties file (you can of course customize these properties as needed, particularly the port - make sure that it's open on the host you're deploying to; you can also omit all of these, and ml-gradle will assume some sensible defaults, but it's expected you'll want to customize these):

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ pluginBundle {
8282
displayName = 'ml-gradle for MarkLogic'
8383
description = 'Gradle plugin for configuring and deploying applications to MarkLogic'
8484
tags = ['marklogic']
85-
version = "2.5.0"
85+
version = "2.6.0"
8686
}
8787
}
8888

8989
mavenCoordinates {
90-
version = "2.5.0"
90+
version = "2.6.0"
9191
}
9292
}

examples/alert-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "2.5.0"
4+
id "com.marklogic.ml-gradle" version "2.6.0"
55
}
66

77
/**

examples/corb2-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
}
2424

2525
plugins {
26-
id "com.marklogic.ml-gradle" version "2.5.0"
26+
id "com.marklogic.ml-gradle" version "2.6.0"
2727
}
2828

2929
repositories {

examples/cpf-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "2.5.0"
4+
id "com.marklogic.ml-gradle" version "2.6.0"
55
}
66

77
repositories {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "2.5.0"
2+
id "com.marklogic.ml-gradle" version "2.6.0"
33
}

examples/disconnected-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlGradleDependency=com.marklogic:ml-gradle:2.5.0
1+
mlGradleDependency=com.marklogic:ml-gradle:2.6.0
22

33
mlHost=localhost
44
mlAppName=disconnected-example
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "2.5.0"
2+
id "com.marklogic.ml-gradle" version "2.6.0"
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "2.5.0"
2+
id "com.marklogic.ml-gradle" version "2.6.0"
33
}

examples/flexrep-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
plugins {
14-
id "com.marklogic.ml-gradle" version "2.5.0"
14+
id "com.marklogic.ml-gradle" version "2.6.0"
1515
}
1616

1717
ext {

0 commit comments

Comments
 (0)