Skip to content

Commit a023eb1

Browse files
committed
Bumping everything to 2.0
1 parent 7d7e54e commit a023eb1

File tree

21 files changed

+22
-27
lines changed

21 files changed

+22
-27
lines changed

CHANGELOG.mdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ml-gradle releases
22

3+
## 2.0 2016-02-08
4+
5+
* No changes from 2.0rc5, just adding 2.0 label
6+
37
## 2.0rc5 2016-01-20
48

59
* [#65](https://github.com/rjrudin/ml-gradle/issues/65) mlWatch will keep running after a module fails to load

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To use ml-gradle right away, you'll need Gradle installed first. And of course y
3838
}
3939

4040
plugins {
41-
id "com.marklogic.ml-gradle" version "2.0rc5"
41+
id "com.marklogic.ml-gradle" version "2.0"
4242
}
4343

4444
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if (project.hasProperty("myBintrayUser")) {
6666
licenses = ['Apache-2.0']
6767
vcsUrl = 'https://github.com/rjrudin/' + project.name + '.git'
6868
version {
69-
name = "2.0rc5"
69+
name = "2.0"
7070
released = new Date()
7171
}
7272
}
@@ -85,11 +85,11 @@ pluginBundle {
8585
displayName = 'ml-gradle for MarkLogic'
8686
description = 'Gradle plugin for configuring and deploying applications to MarkLogic'
8787
tags = ['marklogic']
88-
version = "2.0rc5"
88+
version = "2.0"
8989
}
9090
}
9191

9292
mavenCoordinates {
93-
version = "2.0rc5"
93+
version = "2.0"
9494
}
9595
}

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.0rc5"
4+
id "com.marklogic.ml-gradle" version "2.0"
55
}
66

77
/**

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.0rc5"
4+
id "com.marklogic.ml-gradle" version "2.0"
55
}
66

77
repositories {

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.0rc5
1+
mlGradleDependency=com.marklogic:ml-gradle:2.0
22

33
mlHost=localhost
44
mlAppName=disconnected-example

examples/failover-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "2.0rc5"
2+
id "com.marklogic.ml-gradle" version "2.0"
33
}
44

55
ext {

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.0rc5"
14+
id "com.marklogic.ml-gradle" version "2.0"
1515
}
1616

1717
ext {
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.0rc5"
2+
id "com.marklogic.ml-gradle" version "2.0"
33
}

examples/minimal-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
*/
88

99
plugins {
10-
id "com.marklogic.ml-gradle" version "2.0rc5"
10+
id "com.marklogic.ml-gradle" version "2.0"
1111
}

0 commit comments

Comments
 (0)