Skip to content

Commit

Permalink
Bumped to 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Aug 12, 2021
1 parent fe844c9 commit 6562d33
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ml-gradle 4.3.0 is the first version that can run on Gradle 7.

Then, in an empty directory, create a file named "build.gradle" with your favorite text editor and enter the following:

plugins { id "com.marklogic.ml-gradle" version "4.3.1" }
plugins { id "com.marklogic.ml-gradle" version "4.3.2" }

Then run:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "com.marklogic"
version = "4.3.2-SNAPSHOT"
version = "4.3.2"

sourceCompatibility = "8"
targetCompatibility = "8"
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 "4.3.1"
id "com.marklogic.ml-gradle" version "4.3.2"
}

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

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/data-services/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "java"
id "net.saliman.properties" version "1.5.1"
id "com.marklogic.ml-gradle" version "4.3.1"
id "com.marklogic.ml-gradle" version "4.3.2"
id 'com.marklogic.ml-development-tools' version '5.5.0'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
plugins {
id 'java' //optional - delete if not needed
id 'net.saliman.properties' version '1.5.1'
id 'com.marklogic.ml-gradle' version '4.3.1'
id 'com.marklogic.ml-gradle' version '4.3.2'
}

repositories {
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=4.3.1
mlGradleVersion=4.3.2

mlHost=localhost
mlAppName=example
Expand Down
2 changes: 1 addition & 1 deletion examples/mlcp-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "com.marklogic:ml-gradle:4.3.1"
classpath "com.marklogic:ml-gradle:4.3.2"
}
}

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

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/roxy-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:4.3.1"
classpath "com.marklogic:ml-gradle:4.3.2"
}
}

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 @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "com.marklogic:ml-gradle:4.3.1"
classpath "com.marklogic:ml-gradle:4.3.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/schemas-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id "com.marklogic.ml-gradle" version "4.3.1"
id "com.marklogic.ml-gradle" version "4.3.2"
}
2 changes: 1 addition & 1 deletion examples/triggers-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:4.3.1"
classpath "com.marklogic:ml-gradle:4.3.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/unit-test-project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlGradleVersion=4.3.1
mlGradleVersion=4.3.2
marklogicUnitTestVersion=1.1.0

mlHost=localhost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class NewProjectTask extends MarkLogicTask {
if (ant.mlPropertiesPlugin == "y") {
def text = 'plugins {' +
'\n id "net.saliman.properties" version "1.5.1"' +
'\n id "com.marklogic.ml-gradle" version "4.3.1"' +
'\n id "com.marklogic.ml-gradle" version "4.3.2"' +
'\n}'
println "Updating build.gradle so that the Gradle properties plugin can be applied"
writeFile("build.gradle", text)
Expand Down

0 comments on commit 6562d33

Please sign in to comment.