From 8bb9d74ccb33ea5a6dee02abaa2489c3e59c99ad Mon Sep 17 00:00:00 2001 From: Luiz-N Date: Wed, 1 Jun 2016 14:50:29 -0400 Subject: [PATCH] update mlcp dependency to use https over http Marklogic seems to have updated their repo to use https. The server was returning a `401: Authorization Required` error when the mlcp dependency was attempting to be accessed via http thus causing the build to fail. --- examples/mlcp-project/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mlcp-project/build.gradle b/examples/mlcp-project/build.gradle index 17e8890ec..1ef060384 100644 --- a/examples/mlcp-project/build.gradle +++ b/examples/mlcp-project/build.gradle @@ -12,7 +12,7 @@ repositories { jcenter() // Needed for mlcp dependencies - maven { url "http://developer.marklogic.com/maven2/" } + maven { url "https://developer.marklogic.com/maven2/" } // Needed for hadoop dependencies for mlcp maven { url "http://repository.cloudera.com/artifactory/cloudera-repos/" }