diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..0a2d67e60 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,5 @@ +# Lines starting with '#' are comments. +# Each line is a file pattern followed by one or more owners. + +# These owners will be the default owners for everything in the repo. +* @anu3990 @billfarber @rjrudin diff --git a/README.md b/README.md index d8edfc3db..cd1773960 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ 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.2" } + plugins { id "com.marklogic.ml-gradle" version "4.5.3" } Then run: diff --git a/build.gradle b/build.gradle index 91008164d..dbd605b51 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { } group = "com.marklogic" -version = "4.5.2" +version = "4.5.3" java { sourceCompatibility = 1.8 @@ -31,7 +31,7 @@ dependencies { implementation gradleApi() implementation localGroovy() - api 'com.marklogic:ml-app-deployer:4.5.2' + api 'com.marklogic:ml-app-deployer:4.5.3' 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 8b12279e7..51a4b8ca8 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } repositories { diff --git a/examples/corb2-project/build.gradle b/examples/corb2-project/build.gradle index b022882ad..648b27358 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } repositories { diff --git a/examples/cpf-project/build.gradle b/examples/cpf-project/build.gradle index a7356c47e..0a8468208 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } repositories { diff --git a/examples/custom-forests-and-replicas-project/build.gradle b/examples/custom-forests-and-replicas-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/custom-rest-rewriter-project/build.gradle b/examples/custom-rest-rewriter-project/build.gradle index 7a80a2322..7acc230bd 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } task generateCustomRewriterModules { diff --git a/examples/data-services/build.gradle b/examples/data-services/build.gradle index 92c035556..bd7b04bc6 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" 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 55e7dcbaa..9c0fd5307 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } //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 481770a7c..e60bd9764 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.2" + id 'com.marklogic.ml-gradle' version "4.5.3" } repositories { diff --git a/examples/disconnected-project/gradle.properties b/examples/disconnected-project/gradle.properties index 7c9a21d52..e58185d69 100644 --- a/examples/disconnected-project/gradle.properties +++ b/examples/disconnected-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleDependency=com.marklogic:ml-gradle:4.5.2 +mlGradleDependency=com.marklogic:ml-gradle:4.5.3 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 d5aa091cc..c7c94f59b 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" 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 509d8b57f..ed6f26b86 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" 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 e54cc0c6a..f8c28a545 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" 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 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/external-security/build.gradle b/examples/external-security/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/failover-project/build.gradle b/examples/failover-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/flexrep-project/build.gradle b/examples/flexrep-project/build.gradle index 2fb0ec449..354b1fc55 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } ext { diff --git a/examples/flexrep-with-path-project/build.gradle b/examples/flexrep-with-path-project/build.gradle index cd43cfbdf..d7956671a 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.2" + classpath "com.marklogic:ml-gradle:4.5.3" } } diff --git a/examples/httpbuilder-project/build.gradle b/examples/httpbuilder-project/build.gradle index dd324e434..760e96a7f 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } /* diff --git a/examples/ignore-resources-project/build.gradle b/examples/ignore-resources-project/build.gradle index da6bb1722..3ce4f1782 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } ext { diff --git a/examples/jdbc-project/build.gradle b/examples/jdbc-project/build.gradle index b65c5ab0f..c2f1005f7 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" id "java" } diff --git a/examples/local-testing-project/gradle.properties b/examples/local-testing-project/gradle.properties index de5251711..6fb448352 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.2 +mlGradleVersion=4.5.3 mlHost=localhost mlAppName=example diff --git a/examples/marklogic-cloud-project/gradle.properties b/examples/marklogic-cloud-project/gradle.properties index 323656925..6d9ba6235 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.2 +mlGradleVersion=4.5.3 mlAppName=cloud-test diff --git a/examples/maven-project/build.gradle b/examples/maven-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/mimetypes-project/build.gradle b/examples/mimetypes-project/build.gradle index 9fc1f77ad..a8fb45bce 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/minimal-project/build.gradle b/examples/minimal-project/build.gradle index 7fee12b92..4c8a9d8ca 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/mlcp-project/build.gradle b/examples/mlcp-project/build.gradle index ba928334d..a730d4376 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.2" + classpath "com.marklogic:ml-gradle:4.5.3" } } diff --git a/examples/no-appservers-project/build.gradle b/examples/no-appservers-project/build.gradle index 9fc1f77ad..a8fb45bce 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/partition-project/gradle.properties b/examples/partition-project/gradle.properties index cbbce1241..318145231 100644 --- a/examples/partition-project/gradle.properties +++ b/examples/partition-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleVersion=4.5.2 +mlGradleVersion=4.5.3 mlHost=localhost mlAppName=partition-example diff --git a/examples/properties-project/build.gradle b/examples/properties-project/build.gradle index 76aad93a1..ee4be0c57 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } task printHost { diff --git a/examples/redaction-ruleset-project/build.gradle b/examples/redaction-ruleset-project/build.gradle index a1bdbaa70..d4b102c17 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } repositories { diff --git a/examples/role-project/build.gradle b/examples/role-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/roxy-project/build.gradle b/examples/roxy-project/build.gradle index 0cc2dcc80..53700fbf2 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.2" + classpath "com.marklogic:ml-gradle:4.5.3" } } diff --git a/examples/sample-project/build.gradle b/examples/sample-project/build.gradle index 6f0db7709..a806eaf4f 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.2" + classpath "com.marklogic:ml-gradle:4.5.3" } } diff --git a/examples/schemas-project/build.gradle b/examples/schemas-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/ssl-2way-project/build.gradle b/examples/ssl-2way-project/build.gradle index bb8e5a4e9..915d90316 100644 --- a/examples/ssl-2way-project/build.gradle +++ b/examples/ssl-2way-project/build.gradle @@ -1,6 +1,6 @@ plugins { id "net.saliman.properties" version "1.5.1" - id "com.marklogic.ml-gradle" version "4.5.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/ssl-project/README.md b/examples/ssl-project/README.md index 320b39e5a..873db4924 100644 --- a/examples/ssl-project/README.md +++ b/examples/ssl-project/README.md @@ -1,7 +1,12 @@ -This project shows how to use a certificate template to enable SSL connections on an app server (in this case, the -REST API server). Two things to note in this project: +This project demonstrates how to use a certificate template to enable SSL connections on an app server. -1. The src/main/ml-config/servers/rest-api-server.json config file shows an example of referring to the ID of a -certificate template. -1. The gradle.properties file shows how the mlSimpleSsl property is used to tell ml-gradle to use an SSL connection -when loading modules. \ No newline at end of file +The project currently uses the `mlSimpleSsl` property to tell ml-gradle to use a "trust everything" approach for +communicating with the project's REST API server. This is only used for demonstration purposes and is not recommended +for a production environment. See +[this guide on SSL with ml-gradle](https://github.com/marklogic/ml-gradle/wiki/Loading-modules-via-SSL) for +information on properly configuring SSL usage. + +Note the inclusion of an `ext` block in this project's `build.gradle` file. This automates the generation of a temp +certificate for the certificate template. This can also be accomplished by updating the app server via the MarkLogic +Admin UI; the Admin UI will check for a temp for the app server's certificate template and will create one if it does +not yet exist. diff --git a/examples/ssl-project/build.gradle b/examples/ssl-project/build.gradle index 987f026e5..08d9e09fe 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } /* diff --git a/examples/ssl-project/gradle.properties b/examples/ssl-project/gradle.properties index ee75bc007..82fc84ec2 100644 --- a/examples/ssl-project/gradle.properties +++ b/examples/ssl-project/gradle.properties @@ -2,14 +2,12 @@ mlHost=localhost mlAppName=ssl-project mlRestPort=8180 mlUsername=admin -mlPassword=admin +mlPassword=change in gradle-local.properties # Since the REST API server for this sample project is configured to use a certificate template for SSL, we set this # property to use a very simple SSLContext for communicating with the REST API server. This SSLContext is required for # loading modules - i.e. in order to load options/services/transforms via the REST API server, we need an SSL connection. # -# You can configure a more sophisticated SSLContext by setting the restSslContext property on mlAppConfig in an ext block in build.gradle. -# # Starting in 3.17.0, there are additional properties for configuring an SSL connection based on the JVM's # default keystore. See the Property Reference page in the ml-gradle Wiki for more information. mlSimpleSsl=true diff --git a/examples/ssl-project/src/main/ml-config/servers/README.md b/examples/ssl-project/src/main/ml-config/servers/README.md deleted file mode 100644 index 060cb63aa..000000000 --- a/examples/ssl-project/src/main/ml-config/servers/README.md +++ /dev/null @@ -1,8 +0,0 @@ -The rest-api-server.json file uses a special token that references the ID of a certificate template. This token is -set during mlDeploy - specifically, after the certificate template has been created or updated. This solves a problem -where the config file must reference an ID, but there's no way to know what that ID is until the certificate template -has been created. - -The downside to this approach is that you cannot run a task that updates the server if that task does not also run -a command to create/update the certificate template; otherwise, ml-gradle will not have a value with which to replace -the token. diff --git a/examples/ssl-project/src/main/ml-config/servers/rest-api-server.json b/examples/ssl-project/src/main/ml-config/servers/rest-api-server.json index cbdfdde43..fd822e3ba 100644 --- a/examples/ssl-project/src/main/ml-config/servers/rest-api-server.json +++ b/examples/ssl-project/src/main/ml-config/servers/rest-api-server.json @@ -1,5 +1,4 @@ { "server-name": "%%NAME%%", - "authentication": "digestbasic", - "ssl-certificate-template": "%%certificate-templates-id-ssl-project-template%%" + "ssl-certificate-template": "ssl-project-template" } diff --git a/examples/temporal-lsqt-project/build.gradle b/examples/temporal-lsqt-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/temporal-project/build.gradle b/examples/temporal-project/build.gradle index 893640391..9f47d9c46 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/triggers-project/build.gradle b/examples/triggers-project/build.gradle index fb0fbcd5f..961100758 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.2" + classpath "com.marklogic:ml-gradle:4.5.3" } } diff --git a/examples/uni-temporal-project/build.gradle b/examples/uni-temporal-project/build.gradle index 9fc1f77ad..a8fb45bce 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } diff --git a/examples/unit-test-project/gradle.properties b/examples/unit-test-project/gradle.properties index 13f72f9e5..263c36c5d 100644 --- a/examples/unit-test-project/gradle.properties +++ b/examples/unit-test-project/gradle.properties @@ -1,4 +1,4 @@ -mlGradleVersion=4.5.2 +mlGradleVersion=4.5.3 marklogicUnitTestVersion=1.3.0 mlHost=localhost diff --git a/examples/use-modulesdb-project/build.gradle b/examples/use-modulesdb-project/build.gradle index e00139e03..43d37e5b3 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.2" + id "com.marklogic.ml-gradle" version "4.5.3" } ext { diff --git a/pom.xml b/pom.xml index 71446f574..09cb24f68 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.2 + 4.5.3 com.marklogic:ml-gradle Gradle plugin for automating everything involving MarkLogic https://github.com/marklogic/ml-gradle @@ -40,7 +40,7 @@ It is not intended to be used to build this project. com.marklogic ml-app-deployer - 4.5.2 + 4.5.3 compile diff --git a/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy b/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy index 4886d3788..78f8ea784 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.2"' + + '\n id "com.marklogic.ml-gradle" version "4.5.3"' + '\n}' println "Updating build.gradle so that the Gradle properties plugin can be applied" writeFile("build.gradle", text)