Skip to content

Commit

Permalink
Bumped to 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Oct 15, 2020
1 parent c02e725 commit 7cb14ae
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/sample-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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=
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.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)
Expand Down

0 comments on commit 7cb14ae

Please sign in to comment.