From e82beaf6040df6a9ae4de8a4bca958adaad52892 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Thu, 16 Feb 2023 10:20:54 -0500 Subject: [PATCH] Bumped to 4.5.1 --- README.md | 6 +++--- build.gradle | 4 ++-- examples/alert-project/build.gradle | 2 +- examples/corb2-project/build.gradle | 2 +- examples/cpf-project/build.gradle | 2 +- examples/custom-forests-and-replicas-project/build.gradle | 2 +- examples/custom-rest-rewriter-project/build.gradle | 2 +- examples/data-services/build.gradle | 2 +- .../ml-gradle-client-project/build.gradle | 2 +- .../build.gradle | 2 +- examples/disconnected-project/gradle.properties | 2 +- examples/docker-projects/single-node-with-nifi/build.gradle | 2 +- examples/docker-projects/single-node/build.gradle | 2 +- .../three-node-cluster-with-ha-proxy/build.gradle | 2 +- examples/entity-services-project/build.gradle | 2 +- examples/external-security/build.gradle | 2 +- examples/failover-project/build.gradle | 2 +- examples/flexrep-project/build.gradle | 2 +- examples/flexrep-with-path-project/build.gradle | 2 +- examples/httpbuilder-project/build.gradle | 2 +- examples/ignore-resources-project/build.gradle | 2 +- examples/jdbc-project/build.gradle | 2 +- examples/local-testing-project/gradle.properties | 2 +- examples/marklogic-cloud-project/gradle.properties | 2 +- examples/maven-project/build.gradle | 2 +- examples/mimetypes-project/build.gradle | 2 +- examples/minimal-project/build.gradle | 2 +- examples/mlcp-project/build.gradle | 2 +- examples/no-appservers-project/build.gradle | 2 +- examples/partition-project/gradle.properties | 2 +- examples/properties-project/build.gradle | 2 +- examples/redaction-ruleset-project/build.gradle | 2 +- examples/role-project/build.gradle | 2 +- examples/roxy-project/build.gradle | 2 +- examples/sample-project/build.gradle | 2 +- examples/schemas-project/build.gradle | 2 +- examples/ssl-2way-project/build.gradle | 2 +- examples/ssl-project/build.gradle | 2 +- examples/temporal-lsqt-project/build.gradle | 2 +- examples/temporal-project/build.gradle | 2 +- examples/triggers-project/build.gradle | 2 +- examples/uni-temporal-project/build.gradle | 2 +- examples/unit-test-project/gradle.properties | 2 +- examples/use-modulesdb-project/build.gradle | 2 +- pom.xml | 4 ++-- .../groovy/com/marklogic/gradle/task/NewProjectTask.groovy | 2 +- 46 files changed, 50 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index bdc9940c1..94f366456 100644 --- a/README.md +++ b/README.md @@ -37,14 +37,14 @@ running Gradle 7 or higher, you'll need to use ml-gradle 4.3.0 or higher. 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.5.0" } + plugins { id "com.marklogic.ml-gradle" version "4.5.1" } Then run: gradle mlNewProject -(If you are trying ml-gradle 4.5.0 specifically, you will need to do `gradle -PmlUsername= -PmlPassword= mlNewProject` -due to a bug that will be fixed very soon in ml-gradle 4.5.1). +(If you are trying ml-gradle 4.5.0, you will need to do `gradle -PmlUsername= -PmlPassword= mlNewProject` +due to a bug that has been fixed in ml-gradle 4.5.1). This starts a project wizard to stub out files for your new application. You can accept all the defaults, but be sure to enter a valid port number for the "REST API port" question. ml-gradle will then print the following logging: diff --git a/build.gradle b/build.gradle index 0feee2040..8d67d046a 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { } group = "com.marklogic" -version = "4.5-SNAPSHOT" +version = "4.5.1" java { sourceCompatibility = 1.8 @@ -28,7 +28,7 @@ dependencies { implementation gradleApi() implementation localGroovy() - api 'com.marklogic:ml-app-deployer:4.5-SNAPSHOT' + api 'com.marklogic:ml-app-deployer:4.5.1' implementation "com.marklogic:mlcp-util:1.0.1" implementation "com.marklogic:marklogic-data-movement-components:2.6.0" implementation "commons-io:commons-io:2.11.0" diff --git a/examples/alert-project/build.gradle b/examples/alert-project/build.gradle index 5cd393b1e..5aa776da4 100644 --- a/examples/alert-project/build.gradle +++ b/examples/alert-project/build.gradle @@ -1,7 +1,7 @@ plugins { id "java" id "eclipse" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } repositories { diff --git a/examples/corb2-project/build.gradle b/examples/corb2-project/build.gradle index bb31794b9..41895d7be 100644 --- a/examples/corb2-project/build.gradle +++ b/examples/corb2-project/build.gradle @@ -21,7 +21,7 @@ buildscript { } plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } repositories { diff --git a/examples/cpf-project/build.gradle b/examples/cpf-project/build.gradle index 6f9259b81..7e3788d3f 100644 --- a/examples/cpf-project/build.gradle +++ b/examples/cpf-project/build.gradle @@ -1,7 +1,7 @@ plugins { id "java" id "eclipse" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } repositories { diff --git a/examples/custom-forests-and-replicas-project/build.gradle b/examples/custom-forests-and-replicas-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/custom-forests-and-replicas-project/build.gradle +++ b/examples/custom-forests-and-replicas-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/custom-rest-rewriter-project/build.gradle b/examples/custom-rest-rewriter-project/build.gradle index 3c061be43..dbe65222d 100644 --- a/examples/custom-rest-rewriter-project/build.gradle +++ b/examples/custom-rest-rewriter-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } task generateCustomRewriterModules { diff --git a/examples/data-services/build.gradle b/examples/data-services/build.gradle index 0960c200a..c88028f28 100644 --- a/examples/data-services/build.gradle +++ b/examples/data-services/build.gradle @@ -1,7 +1,7 @@ plugins { id "java" id "net.saliman.properties" version "1.5.1" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" id 'com.marklogic.ml-development-tools' version '6.0.0' } diff --git a/examples/dependency-project/ml-gradle-client-project/build.gradle b/examples/dependency-project/ml-gradle-client-project/build.gradle index 099afef90..e6b09b377 100644 --- a/examples/dependency-project/ml-gradle-client-project/build.gradle +++ b/examples/dependency-project/ml-gradle-client-project/build.gradle @@ -10,7 +10,7 @@ plugins { id "net.saliman.properties" version "1.5.1" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } //apply plugin: "com.marklogic.ml-gradle" diff --git a/examples/disconnected-project-using-plugins-and-gradlew/build.gradle b/examples/disconnected-project-using-plugins-and-gradlew/build.gradle index e4457fb0f..42c32035b 100644 --- a/examples/disconnected-project-using-plugins-and-gradlew/build.gradle +++ b/examples/disconnected-project-using-plugins-and-gradlew/build.gradle @@ -14,7 +14,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.5.0" + id 'com.marklogic.ml-gradle' version "4.5.1" } repositories { diff --git a/examples/disconnected-project/gradle.properties b/examples/disconnected-project/gradle.properties index 453324987..e75d9e5f1 100644 --- a/examples/disconnected-project/gradle.properties +++ b/examples/disconnected-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleDependency=com.marklogic:ml-gradle:4.5.0 +mlGradleDependency=com.marklogic:ml-gradle:4.5.1 mlSalimanDependency=net.saliman:gradle-properties-plugin:1.4.6 mlHost=localhost diff --git a/examples/docker-projects/single-node-with-nifi/build.gradle b/examples/docker-projects/single-node-with-nifi/build.gradle index 9e1e671c6..7a4dd2a0c 100644 --- a/examples/docker-projects/single-node-with-nifi/build.gradle +++ b/examples/docker-projects/single-node-with-nifi/build.gradle @@ -1,7 +1,7 @@ plugins { // gradle -PenvironmentName=x ... id 'net.saliman.properties' version '1.5.1' - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" id 'com.avast.gradle.docker-compose' version "0.6.11" } dockerCompose { diff --git a/examples/docker-projects/single-node/build.gradle b/examples/docker-projects/single-node/build.gradle index c2cdb1375..8d2832810 100644 --- a/examples/docker-projects/single-node/build.gradle +++ b/examples/docker-projects/single-node/build.gradle @@ -1,7 +1,7 @@ plugins { // gradle -PenvironmentName=x ... id 'net.saliman.properties' version '1.5.1' - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" id 'com.avast.gradle.docker-compose' version "0.6.11" } dockerCompose { diff --git a/examples/docker-projects/three-node-cluster-with-ha-proxy/build.gradle b/examples/docker-projects/three-node-cluster-with-ha-proxy/build.gradle index deb34460d..24a158a4d 100644 --- a/examples/docker-projects/three-node-cluster-with-ha-proxy/build.gradle +++ b/examples/docker-projects/three-node-cluster-with-ha-proxy/build.gradle @@ -1,6 +1,6 @@ plugins { id 'net.saliman.properties' version '1.5.1' - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" id 'com.avast.gradle.docker-compose' version "0.6.11" } dockerCompose { diff --git a/examples/entity-services-project/build.gradle b/examples/entity-services-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/entity-services-project/build.gradle +++ b/examples/entity-services-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/external-security/build.gradle b/examples/external-security/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/external-security/build.gradle +++ b/examples/external-security/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/failover-project/build.gradle b/examples/failover-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/failover-project/build.gradle +++ b/examples/failover-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/flexrep-project/build.gradle b/examples/flexrep-project/build.gradle index 00345b35e..c161c5c35 100644 --- a/examples/flexrep-project/build.gradle +++ b/examples/flexrep-project/build.gradle @@ -11,7 +11,7 @@ */ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } ext { diff --git a/examples/flexrep-with-path-project/build.gradle b/examples/flexrep-with-path-project/build.gradle index 0ea0239fd..665e6a1bd 100644 --- a/examples/flexrep-with-path-project/build.gradle +++ b/examples/flexrep-with-path-project/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath "com.marklogic:ml-gradle:4.5.0" + classpath "com.marklogic:ml-gradle:4.5.1" } } diff --git a/examples/httpbuilder-project/build.gradle b/examples/httpbuilder-project/build.gradle index fd976109a..b147777aa 100644 --- a/examples/httpbuilder-project/build.gradle +++ b/examples/httpbuilder-project/build.gradle @@ -5,7 +5,7 @@ buildscript { } plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } /* diff --git a/examples/ignore-resources-project/build.gradle b/examples/ignore-resources-project/build.gradle index e669213c1..4ccf7fb94 100644 --- a/examples/ignore-resources-project/build.gradle +++ b/examples/ignore-resources-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } ext { diff --git a/examples/jdbc-project/build.gradle b/examples/jdbc-project/build.gradle index 52de5bdcf..d8d562d0c 100644 --- a/examples/jdbc-project/build.gradle +++ b/examples/jdbc-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" id "java" } diff --git a/examples/local-testing-project/gradle.properties b/examples/local-testing-project/gradle.properties index 6ae717181..d8aa4bf40 100644 --- a/examples/local-testing-project/gradle.properties +++ b/examples/local-testing-project/gradle.properties @@ -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.5.0 +mlGradleVersion=4.5.1 mlHost=localhost mlAppName=example diff --git a/examples/marklogic-cloud-project/gradle.properties b/examples/marklogic-cloud-project/gradle.properties index 0c04e21be..0f2790a85 100644 --- a/examples/marklogic-cloud-project/gradle.properties +++ b/examples/marklogic-cloud-project/gradle.properties @@ -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.5.0 +mlGradleVersion=4.5.1 mlAppName=cloud-test diff --git a/examples/maven-project/build.gradle b/examples/maven-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/maven-project/build.gradle +++ b/examples/maven-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/mimetypes-project/build.gradle b/examples/mimetypes-project/build.gradle index 243814238..c3df2dc21 100644 --- a/examples/mimetypes-project/build.gradle +++ b/examples/mimetypes-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/minimal-project/build.gradle b/examples/minimal-project/build.gradle index 5573e4438..76f8b039b 100644 --- a/examples/minimal-project/build.gradle +++ b/examples/minimal-project/build.gradle @@ -7,5 +7,5 @@ */ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/mlcp-project/build.gradle b/examples/mlcp-project/build.gradle index 08aa8a35f..fceffe8e7 100644 --- a/examples/mlcp-project/build.gradle +++ b/examples/mlcp-project/build.gradle @@ -10,7 +10,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.marklogic:ml-gradle:4.5.0" + classpath "com.marklogic:ml-gradle:4.5.1" } } diff --git a/examples/no-appservers-project/build.gradle b/examples/no-appservers-project/build.gradle index 243814238..c3df2dc21 100644 --- a/examples/no-appservers-project/build.gradle +++ b/examples/no-appservers-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/partition-project/gradle.properties b/examples/partition-project/gradle.properties index d8bb08b26..d3caf0bda 100644 --- a/examples/partition-project/gradle.properties +++ b/examples/partition-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleVersion=4.5.0 +mlGradleVersion=4.5.1 mlHost=localhost mlAppName=partition-example diff --git a/examples/properties-project/build.gradle b/examples/properties-project/build.gradle index c89293afa..5bb746f0c 100644 --- a/examples/properties-project/build.gradle +++ b/examples/properties-project/build.gradle @@ -3,7 +3,7 @@ plugins { // processing the gradle-(environmentName).properties files. id "net.saliman.properties" version "1.4.6" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } task printHost { diff --git a/examples/redaction-ruleset-project/build.gradle b/examples/redaction-ruleset-project/build.gradle index f44cb15d3..3e78be606 100644 --- a/examples/redaction-ruleset-project/build.gradle +++ b/examples/redaction-ruleset-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } repositories { diff --git a/examples/role-project/build.gradle b/examples/role-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/role-project/build.gradle +++ b/examples/role-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/roxy-project/build.gradle b/examples/roxy-project/build.gradle index cfa12f91a..26940c3f6 100644 --- a/examples/roxy-project/build.gradle +++ b/examples/roxy-project/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath "com.marklogic:ml-gradle:4.5.0" + classpath "com.marklogic:ml-gradle:4.5.1" } } diff --git a/examples/sample-project/build.gradle b/examples/sample-project/build.gradle index 7fba3f30c..5e1532e91 100644 --- a/examples/sample-project/build.gradle +++ b/examples/sample-project/build.gradle @@ -8,7 +8,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.marklogic:ml-gradle:4.5.0" + classpath "com.marklogic:ml-gradle:4.5.1" } } diff --git a/examples/schemas-project/build.gradle b/examples/schemas-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/schemas-project/build.gradle +++ b/examples/schemas-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/ssl-2way-project/build.gradle b/examples/ssl-2way-project/build.gradle index 4fdaa7ed3..1c8468e1e 100644 --- a/examples/ssl-2way-project/build.gradle +++ b/examples/ssl-2way-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/ssl-project/build.gradle b/examples/ssl-project/build.gradle index 56c8819d3..d65c05e7d 100644 --- a/examples/ssl-project/build.gradle +++ b/examples/ssl-project/build.gradle @@ -1,6 +1,6 @@ plugins { id "net.saliman.properties" version "1.5.1" - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } /* diff --git a/examples/temporal-lsqt-project/build.gradle b/examples/temporal-lsqt-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/temporal-lsqt-project/build.gradle +++ b/examples/temporal-lsqt-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/temporal-project/build.gradle b/examples/temporal-project/build.gradle index d8cb6a64e..e59301694 100644 --- a/examples/temporal-project/build.gradle +++ b/examples/temporal-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/triggers-project/build.gradle b/examples/triggers-project/build.gradle index b03ab85d7..71ab727a8 100644 --- a/examples/triggers-project/build.gradle +++ b/examples/triggers-project/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath "com.marklogic:ml-gradle:4.5.0" + classpath "com.marklogic:ml-gradle:4.5.1" } } diff --git a/examples/uni-temporal-project/build.gradle b/examples/uni-temporal-project/build.gradle index 243814238..c3df2dc21 100644 --- a/examples/uni-temporal-project/build.gradle +++ b/examples/uni-temporal-project/build.gradle @@ -1,3 +1,3 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } diff --git a/examples/unit-test-project/gradle.properties b/examples/unit-test-project/gradle.properties index cac05fa9e..a881f9c67 100644 --- a/examples/unit-test-project/gradle.properties +++ b/examples/unit-test-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleVersion=4.5.0 +mlGradleVersion=4.5.1 marklogicUnitTestVersion=1.1.0 mlHost=localhost diff --git a/examples/use-modulesdb-project/build.gradle b/examples/use-modulesdb-project/build.gradle index 11f9b1c09..4975b1a67 100644 --- a/examples/use-modulesdb-project/build.gradle +++ b/examples/use-modulesdb-project/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.marklogic.ml-gradle" version "4.5.0" + id "com.marklogic.ml-gradle" version "4.5.1" } ext { diff --git a/pom.xml b/pom.xml index e00d4e721..7c949729e 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ It is not intended to be used to build this project. 4.0.0 com.marklogic ml-gradle - 4.5.0 + 4.5.1 com.marklogic:ml-gradle Gradle plugin for automating everything involving MarkLogic https://github.com/marklogic-community/ml-gradle @@ -40,7 +40,7 @@ It is not intended to be used to build this project. com.marklogic ml-app-deployer - 4.5.0 + 4.5.1 compile diff --git a/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy b/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy index 648a4831c..62fe029ac 100644 --- a/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy +++ b/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy @@ -59,7 +59,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.5.0"' + + '\n id "com.marklogic.ml-gradle" version "4.5.1"' + '\n}' println "Updating build.gradle so that the Gradle properties plugin can be applied" writeFile("build.gradle", text)