Skip to content

Commit e12e08f

Browse files
committed
Bumped to 4.5.0
1 parent 86bcd43 commit e12e08f

File tree

45 files changed

+51
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+51
-75
lines changed

README.md

Lines changed: 1 addition & 1 deletion

build.gradle

Lines changed: 5 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ plugins {
33
id "maven-publish"
44
id "signing"
55

6-
id "com.github.jk1.dependency-license-report" version "2.1"
6+
// Ignored as it depends on Java 11; can uncomment and use Java 11 when it needs to be run
7+
// id "com.github.jk1.dependency-license-report" version "2.1"
78
id "com.gradle.plugin-publish" version "0.20.0"
89
id "java-gradle-plugin"
910

@@ -12,49 +13,24 @@ plugins {
1213
}
1314

1415
group = "com.marklogic"
15-
version = "4.5-SNAPSHOT"
16+
version = "4.5.0"
1617

1718
java {
1819
sourceCompatibility = 1.8
1920
targetCompatibility = 1.8
2021
}
2122

2223
repositories {
23-
mavenLocal()
24-
maven {
25-
url "https://nexus.marklogic.com/repository/maven-snapshots/"
26-
}
2724
mavenCentral()
2825
}
2926

30-
// Do not cache changing modules
31-
configurations.all {
32-
resolutionStrategy {
33-
cacheChangingModulesFor 0, 'seconds'
34-
}
35-
}
36-
3727
dependencies {
3828
implementation gradleApi()
3929
implementation localGroovy()
4030

41-
// Temporarily adding these until ready to release
42-
api('com.marklogic:marklogic-client-api:6.1-SNAPSHOT') {
43-
changing = true
44-
}
45-
api('com.marklogic:ml-javaclient-util:4.5-SNAPSHOT') {
46-
changing = true
47-
}
48-
49-
// Will update this when ready to release
50-
api('com.marklogic:ml-app-deployer:4.5-SNAPSHOT') {
51-
changing = true
52-
}
53-
31+
api 'com.marklogic:ml-app-deployer:4.5.0'
5432
implementation "com.marklogic:mlcp-util:1.0.1"
55-
// TODO Will need to update this to 2.6.0 once it's released; the only planned change for this is to bump up the
56-
// Java Client to 6.1.0
57-
implementation "com.marklogic:marklogic-data-movement-components:2.5.0"
33+
implementation "com.marklogic:marklogic-data-movement-components:2.6.0"
5834
implementation "commons-io:commons-io:2.11.0"
5935

6036
compileOnly "com.marklogic:marklogic-unit-test-client:1.2.1"

examples/alert-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "4.4.0"
4+
id "com.marklogic.ml-gradle" version "4.5.0"
55
}
66

77
repositories {

examples/corb2-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222

2323
plugins {
24-
id "com.marklogic.ml-gradle" version "4.4.0"
24+
id "com.marklogic.ml-gradle" version "4.5.0"
2525
}
2626

2727
repositories {

examples/cpf-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "4.4.0"
4+
id "com.marklogic.ml-gradle" version "4.5.0"
55
}
66

77
repositories {

examples/custom-rest-rewriter-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "4.4.0"
2+
id "com.marklogic.ml-gradle" version "4.5.0"
33
}
44

55
task generateCustomRewriterModules {

examples/data-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "net.saliman.properties" version "1.5.1"
4-
id "com.marklogic.ml-gradle" version "4.4.0"
4+
id "com.marklogic.ml-gradle" version "4.5.0"
55
id 'com.marklogic.ml-development-tools' version '6.0.0'
66
}
77

examples/dependency-project/ml-gradle-client-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
plugins {
1212
id "net.saliman.properties" version "1.5.1"
13-
id "com.marklogic.ml-gradle" version "4.4.0"
13+
id "com.marklogic.ml-gradle" version "4.5.0"
1414
}
1515

1616
//apply plugin: "com.marklogic.ml-gradle"

examples/disconnected-project-using-plugins-and-gradlew/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
plugins {
1515
id 'java' //optional - delete if not needed
1616
id 'net.saliman.properties' version '1.5.1'
17-
id 'com.marklogic.ml-gradle' version '4.4.0'
17+
id 'com.marklogic.ml-gradle' version "4.5.0"
1818
}
1919

2020
repositories {

examples/disconnected-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlGradleDependency=com.marklogic:ml-gradle:4.4.0
1+
mlGradleDependency=com.marklogic:ml-gradle:4.5.0
22
mlSalimanDependency=net.saliman:gradle-properties-plugin:1.4.6
33

44
mlHost=localhost

0 commit comments

Comments
 (0)