Skip to content

Commit

Permalink
Bumping everyone up to 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Rudin committed Mar 13, 2017
1 parent 3721087 commit 86f3174
Show file tree
Hide file tree
Showing 24 changed files with 26 additions and 26 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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

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
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ pluginBundle {
displayName = 'ml-gradle for MarkLogic'
description = 'Gradle plugin for configuring and deploying applications to MarkLogic'
tags = ['marklogic']
version = "2.5.0"
version = "2.6.0"
}
}

mavenCoordinates {
version = "2.5.0"
version = "2.6.0"
}
}
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

/**
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
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.5.0
mlGradleDependency=com.marklogic:ml-gradle:2.6.0

mlHost=localhost
mlAppName=disconnected-example
Expand Down
2 changes: 1 addition & 1 deletion examples/entity-services-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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

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.5.0"
classpath "com.marklogic:ml-gradle:2.6.0"
}
}

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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

/*
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
2 changes: 1 addition & 1 deletion examples/no-appservers-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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

ext {
Expand Down
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

/**
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"

// 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.5.0"
classpath "com.marklogic:ml-gradle:2.6.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/shell-project/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The Gradle build file in this project shows the things you need in order to run groovysh with
some MarkLogic support built in:

1. The latest ml-gradle plugin (at the time of this writing, most likely 2.5.0+)
1. The latest ml-gradle plugin (at the time of this writing, most likely 2.6.0+)
1. The java plugin, so that mlShell can have a classpath set on it
1. The jcenter repository, which hosts ml-groovysh
1. The latest ml-groovysh dependency
Expand Down
4 changes: 2 additions & 2 deletions examples/shell-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "java"
id "com.marklogic.ml-gradle" version "2.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

repositories {
Expand All @@ -13,7 +13,7 @@ dependencies {

// Provides the "guts" needed by ShellTask; can pick any version you want, as ml-groovysh does not
// specify a dependency on ml-app-deployer
runtime "com.marklogic:ml-app-deployer:2.5.0"
runtime "com.marklogic:ml-app-deployer:2.6.0"
}

mlShell.classpath = sourceSets.main.runtimeClasspath
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

/*
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

/**
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.5.0"
id "com.marklogic.ml-gradle" version "2.6.0"
}

ext {
Expand Down

0 comments on commit 86f3174

Please sign in to comment.