Skip to content

Commit

Permalink
Updating to version 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Aug 21, 2016
1 parent 8fdceb4 commit 22b8e29
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ First, please note the [Wiki and FAQ](https://github.com/rjrudin/ml-gradle/wiki)
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:

plugins {
id "com.marklogic.ml-gradle" version "2.3.1"
id "com.marklogic.ml-gradle" version "2.3.3"
}

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):
Expand Down
2 changes: 1 addition & 1 deletion examples/alert-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "java"
id "eclipse"
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/corb2-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
}

plugins {
id "com.marklogic.ml-gradle" version "2.3.2"
id "com.marklogic.ml-gradle" version "2.3.3"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/cpf-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "java"
id "eclipse"
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-forests-and-replicas-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}
2 changes: 1 addition & 1 deletion examples/disconnected-project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlGradleDependency=com.marklogic:ml-gradle:2.3.0
mlGradleDependency=com.marklogic:ml-gradle:2.3.3

mlHost=localhost
mlAppName=disconnected-example
Expand Down
2 changes: 1 addition & 1 deletion examples/failover-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}
2 changes: 1 addition & 1 deletion examples/flexrep-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

ext {
Expand Down
2 changes: 1 addition & 1 deletion examples/flexrep-with-path-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "com.marklogic:ml-gradle:2.3.0"
classpath "com.marklogic:ml-gradle:2.3.3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/httpbuilder-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

/*
Expand Down
2 changes: 1 addition & 1 deletion examples/local-testing-project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set this to the version you used when running
# "gradle -Pversion=(something) publishToMavenLocal" on your local ml-gradle repo
mlGradleVersion=2.3.0
mlGradleVersion=2.3.3

mlHost=localhost
mlAppName=example
Expand Down
2 changes: 1 addition & 1 deletion examples/mimetypes-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}
2 changes: 1 addition & 1 deletion examples/minimal-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
*/

plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}
2 changes: 1 addition & 1 deletion examples/role-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}
2 changes: 1 addition & 1 deletion examples/roxy-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/sample-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ buildscript {
* that those blocks can override properties before ml-gradle initializes itself.
*/
plugins {
id "com.marklogic.ml-gradle" version "2.3.2"
id "com.marklogic.ml-gradle" version "2.3.3"

// The following plugins are optional

Expand Down
2 changes: 1 addition & 1 deletion examples/schemas-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "com.marklogic:ml-gradle:2.3.0"
classpath "com.marklogic:ml-gradle:2.3.3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/shell-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id "java"
id "eclipse"
id "com.github.tkruse.groovysh" version "1.0.8"
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/ssl-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

/*
Expand Down
2 changes: 1 addition & 1 deletion examples/triggers-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/use-modulesdb-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.marklogic.ml-gradle" version "2.3.0"
id "com.marklogic.ml-gradle" version "2.3.3"
}

ext {
Expand Down

0 comments on commit 22b8e29

Please sign in to comment.