@@ -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
1415group = " com.marklogic"
15- version = " 4.5-SNAPSHOT "
16+ version = " 4.5.0 "
1617
1718java {
1819 sourceCompatibility = 1.8
1920 targetCompatibility = 1.8
2021}
2122
2223repositories {
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-
3727dependencies {
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"
0 commit comments