Skip to content

Commit 3d59b1b

Browse files
committed
#391 mlcp examples now use updated URL for ML Maven repo
1 parent e70c4e1 commit 3d59b1b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repositories {
1212
} else {
1313
println "Using online repositories"
1414
jcenter()
15-
maven { url "https://developer.marklogic.com/maven2/" }
15+
maven { url "http://developer.marklogic.com/maven2/" }
1616
}
1717
}
1818

@@ -22,10 +22,10 @@ configurations {
2222

2323
dependencies {
2424
// sample java compile dependency. Remove if not required
25-
compile 'com.marklogic:marklogic-xcc:9.0.4'
25+
compile 'com.marklogic:marklogic-xcc:9.0.7'
2626

2727
//sample mlcp dependency. Remove if not required
28-
mlcp "com.marklogic:mlcp:9.0.5"
28+
mlcp "com.marklogic:mlcp:9.0.7"
2929
}
3030

3131
/**

examples/mlcp-project/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
*/
66

77
plugins {
8-
id "com.marklogic.ml-gradle" version "3.6.0"
8+
id "com.marklogic.ml-gradle" version "3.10.0"
99
}
1010

1111
repositories {
1212
jcenter()
1313

1414
// Needed for some mlcp dependencies, such as commons-csv:1.5.1-marklogic
15-
maven { url "https://developer.marklogic.com/maven2/" }
15+
maven { url "http://developer.marklogic.com/maven2/" }
1616
}
1717

1818

@@ -21,7 +21,7 @@ configurations {
2121
}
2222

2323
dependencies {
24-
mlcp "com.marklogic:mlcp:9.0.4"
24+
mlcp "com.marklogic:mlcp:9.0.7"
2525

2626
/**
2727
* mlcp uses Log4j for logging, and if Log4j can't find a configuration file, it will complain and you'll

0 commit comments

Comments
 (0)