Skip to content

Commit 7437fee

Browse files
committed
#572 Upgrading dependencies
Also removed dependency properties so that build.gradle can be more easily analyzed by scanning tools
1 parent e2cb837 commit 7437fee

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ repositories {
2020
dependencies {
2121
compile gradleApi()
2222
compile localGroovy()
23-
compile mlAppDeployerDependency
24-
compile mlcpUtilDependency
25-
compile mlDataMovementDependency
26-
compile group: 'commons-io', name: 'commons-io', version: '2.5'
23+
compile "com.marklogic:ml-app-deployer:4.1.0-rc1"
24+
compile "com.marklogic:mlcp-util:0.9.0"
25+
compile "com.marklogic:marklogic-data-movement-components:2.0.0"
26+
compile "commons-io:commons-io:2.8.0"
2727

28-
compileOnly mlUnitTestDependency
28+
compileOnly "com.marklogic:marklogic-unit-test-client:1.0.0"
2929

3030
testCompile localGroovy()
3131
testCompile gradleTestKit()

examples/sample-project/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
jcenter()
99
}
1010
dependencies {
11-
classpath "com.marklogic:ml-gradle:4.0.4"
11+
classpath "com.marklogic:ml-gradle:4.1.0-rc1"
1212
}
1313
}
1414

@@ -65,7 +65,7 @@ dependencies {
6565
testRuntime "com.sun.xml.bind:jaxb-impl:2.3.2"
6666

6767
// corb jar available from jcenter
68-
corb "com.marklogic:marklogic-corb:2.3.2"
68+
corb "com.marklogic:marklogic-corb:2.4.5"
6969
}
7070

7171
/*

examples/sample-project/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip

gradle.properties

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
group=com.marklogic
2-
version=4.0.4
2+
version=4.1.0-rc1
33
javadocsDir=../gh-pages-marklogic-java/javadocs
4-
5-
mlAppDeployerDependency=com.marklogic:ml-app-deployer:4.0.3
6-
mlcpUtilDependency=com.marklogic:mlcp-util:0.9.0
7-
mlDataMovementDependency=com.marklogic:marklogic-data-movement-components:2.0.0
8-
mlUnitTestDependency=com.marklogic:marklogic-unit-test-client:1.0.0
9-

0 commit comments

Comments
 (0)