From a82925b3bd6f4a8e692702ba08724ce9ab8e8ebd Mon Sep 17 00:00:00 2001 From: debadair Date: Wed, 9 Sep 2015 13:14:24 -0700 Subject: [PATCH] Updated links to maven repo to use https. Closes elastic/elasticsearch#495. Original commit: elastic/x-pack-elasticsearch@f95bdea57efa59e8e033c946d9c2030930cc467f --- .../public/configuring-clients-integrations/java.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shield/docs/public/configuring-clients-integrations/java.asciidoc b/shield/docs/public/configuring-clients-integrations/java.asciidoc index 787798d132a..8c996d2be6b 100644 --- a/shield/docs/public/configuring-clients-integrations/java.asciidoc +++ b/shield/docs/public/configuring-clients-integrations/java.asciidoc @@ -15,7 +15,7 @@ To use the transport client with Shield, you need to: `transport_client` role is defined in `roles.yml` that grants the `cluster:monitor/nodes/info` cluster permission. The transport client uses the node info API to fetch information about the nodes in the cluster. If the client is configured to use sniffing, you need to add the `cluster:monitor/state` cluster permission to the `transport_client` role. -. Add the Shield JAR file (`shield-2.1.0.jar`) to your CLASSPATH. You can download the Shield distribution and extract the JAR file manually or you can get it from the http://maven.elasticsearch.org/releases/org/elasticsearch/plugin/shield/{version}/shield-{version}.jar[Elasticsearch Maven repository]. +. Add the Shield JAR file (`shield-2.1.0.jar`) to your CLASSPATH. You can download the Shield distribution and extract the JAR file manually or you can get it from the https://maven.elasticsearch.org/releases/org/elasticsearch/plugin/shield/{version}/shield-{version}.jar[Elasticsearch Maven repository]. + If you are using Maven, you need to add the Shield JAR file as a dependency in your project's `pom.xml` file: + @@ -27,7 +27,7 @@ If you are using Maven, you need to add the Shield JAR file as a dependency in y elasticsearch-releases - http://maven.elasticsearch.org/releases + https://maven.elasticsearch.org/releases true @@ -62,7 +62,7 @@ repositories { // Add the Elasticsearch Maven Repository maven { - url "http://maven.elasticsearch.org/releases" + url "https://maven.elasticsearch.org/releases" } }