From 7cb14ae47929a66296f396ff3a3b6f3e2bc87238 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Thu, 15 Oct 2020 08:57:01 -0400 Subject: [PATCH] Bumped to 4.1.0 --- README.md | 2 +- build.gradle | 2 +- examples/sample-project/build.gradle | 4 ++-- gradle.properties | 3 ++- .../groovy/com/marklogic/gradle/task/NewProjectTask.groovy | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8353fa526..9a6209fc0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ First, [install Gradle](https://gradle.org/install/). 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.0.4" } + plugins { id "com.marklogic.ml-gradle" version "4.1.0" } Then run: diff --git a/build.gradle b/build.gradle index 56290a56d..06c5bf819 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ repositories { dependencies { compile gradleApi() compile localGroovy() - compile "com.marklogic:ml-app-deployer:4.1.0-SNAPSHOT" + compile "com.marklogic:ml-app-deployer:4.1.0" compile "com.marklogic:mlcp-util:0.9.0" compile "com.marklogic:marklogic-data-movement-components:2.2.0" compile "commons-io:commons-io:2.8.0" diff --git a/examples/sample-project/build.gradle b/examples/sample-project/build.gradle index eb6d698ac..3e0c6cbd7 100644 --- a/examples/sample-project/build.gradle +++ b/examples/sample-project/build.gradle @@ -8,14 +8,14 @@ buildscript { jcenter() } dependencies { - classpath "com.marklogic:ml-gradle:4.1.0-rc1" + classpath "com.marklogic:ml-gradle:4.1.0" } } plugins { // The following plugins are optional - id "net.saliman.properties" version "1.4.6" + id "net.saliman.properties" version "1.5.1" // The Java plugin is used to compile and run JUnit tests id "java" diff --git a/gradle.properties b/gradle.properties index 2a017d0c5..9c61415a4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,6 @@ group=com.marklogic -version=4.1.0-SNAPSHOT +version=4.1.0 javadocsDir=../gh-pages-marklogic-java/javadocs +# Define this via gradle-local.properties or on the command line when running snyk-test snykToken= diff --git a/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy b/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy index c121620af..10fdbe4b6 100644 --- a/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy +++ b/src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy @@ -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.0.4"' + + '\n id "com.marklogic.ml-gradle" version "4.1.0"' + '\n}' println "Updating build.gradle so that the Gradle properties plugin can be applied" writeFile("build.gradle", text)