Repository: bahir-website
Updated Branches:
  refs/heads/master bb4cd4b2a -> 92ca3c99e


Fix Maven artifact IDs spark-shell examples

The spark-shell usage examples show an underscore instead of a dash in
the Maven artifact ID ("spark-streaming_xxx" vs "spark-streaming-xxx").
Consequently Spark can not resolve these broken Maven coordinates.

  $ bin/spark-shell \
      --packages org.apache.bahir:spark-streaming_akka_2.11:2.0.2

  $ bin/spark-shell \
      --packages org.apache.bahir:spark-streaming-akka_2.11:2.0.2


Project: http://git-wip-us.apache.org/repos/asf/bahir-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/bahir-website/commit/92ca3c99
Tree: http://git-wip-us.apache.org/repos/asf/bahir-website/tree/92ca3c99
Diff: http://git-wip-us.apache.org/repos/asf/bahir-website/diff/92ca3c99

Branch: refs/heads/master
Commit: 92ca3c99e2be7d671166d5e2b2cb82fb376feb4b
Parents: bb4cd4b
Author: Christian Kadner <ckad...@apache.org>
Authored: Sat Jan 28 05:47:10 2017 -0800
Committer: Christian Kadner <ckad...@us.ibm.com>
Committed: Sat Jan 28 05:47:10 2017 -0800

----------------------------------------------------------------------
 site/docs/spark/2.0.0/spark-streaming-akka.md      | 2 +-
 site/docs/spark/2.0.0/spark-streaming-mqtt.md      | 2 +-
 site/docs/spark/2.0.0/spark-streaming-twitter.md   | 2 +-
 site/docs/spark/2.0.0/spark-streaming-zeromq.md    | 2 +-
 site/docs/spark/2.0.1/spark-streaming-akka.md      | 2 +-
 site/docs/spark/2.0.1/spark-streaming-mqtt.md      | 2 +-
 site/docs/spark/2.0.1/spark-streaming-twitter.md   | 2 +-
 site/docs/spark/2.0.1/spark-streaming-zeromq.md    | 2 +-
 site/docs/spark/2.0.2/spark-streaming-akka.md      | 2 +-
 site/docs/spark/2.0.2/spark-streaming-mqtt.md      | 2 +-
 site/docs/spark/2.0.2/spark-streaming-twitter.md   | 2 +-
 site/docs/spark/2.0.2/spark-streaming-zeromq.md    | 2 +-
 site/docs/spark/current/spark-streaming-akka.md    | 2 +-
 site/docs/spark/current/spark-streaming-mqtt.md    | 2 +-
 site/docs/spark/current/spark-streaming-twitter.md | 2 +-
 site/docs/spark/current/spark-streaming-zeromq.md  | 2 +-
 16 files changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.0/spark-streaming-akka.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.0/spark-streaming-akka.md 
b/site/docs/spark/2.0.0/spark-streaming-akka.md
index 9de0688..28c95e1 100644
--- a/site/docs/spark/2.0.0/spark-streaming-akka.md
+++ b/site/docs/spark/2.0.0/spark-streaming-akka.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_akka_2.11:2.0.0
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-akka_2.11:2.0.0
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.0/spark-streaming-mqtt.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.0/spark-streaming-mqtt.md 
b/site/docs/spark/2.0.0/spark-streaming-mqtt.md
index 886bacb..9870e44 100644
--- a/site/docs/spark/2.0.0/spark-streaming-mqtt.md
+++ b/site/docs/spark/2.0.0/spark-streaming-mqtt.md
@@ -45,7 +45,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_mqtt_2.11:2.0.0
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-mqtt_2.11:2.0.0
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.0/spark-streaming-twitter.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.0/spark-streaming-twitter.md 
b/site/docs/spark/2.0.0/spark-streaming-twitter.md
index f04928a..e00eccf 100644
--- a/site/docs/spark/2.0.0/spark-streaming-twitter.md
+++ b/site/docs/spark/2.0.0/spark-streaming-twitter.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_twitter_2.11:2.0.0
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-twitter_2.11:2.0.0
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.0/spark-streaming-zeromq.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.0/spark-streaming-zeromq.md 
b/site/docs/spark/2.0.0/spark-streaming-zeromq.md
index 9c67a79..c6aaf71 100644
--- a/site/docs/spark/2.0.0/spark-streaming-zeromq.md
+++ b/site/docs/spark/2.0.0/spark-streaming-zeromq.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_zeromq_2.11:2.0.0
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-zeromq_2.11:2.0.0
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.1/spark-streaming-akka.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.1/spark-streaming-akka.md 
b/site/docs/spark/2.0.1/spark-streaming-akka.md
index a45b014..b56ee86 100644
--- a/site/docs/spark/2.0.1/spark-streaming-akka.md
+++ b/site/docs/spark/2.0.1/spark-streaming-akka.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_akka_2.11:2.0.1
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-akka_2.11:2.0.1
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.1/spark-streaming-mqtt.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.1/spark-streaming-mqtt.md 
b/site/docs/spark/2.0.1/spark-streaming-mqtt.md
index 15ab0c7..ba7874d 100644
--- a/site/docs/spark/2.0.1/spark-streaming-mqtt.md
+++ b/site/docs/spark/2.0.1/spark-streaming-mqtt.md
@@ -45,7 +45,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_mqtt_2.11:2.0.1
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-mqtt_2.11:2.0.1
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.1/spark-streaming-twitter.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.1/spark-streaming-twitter.md 
b/site/docs/spark/2.0.1/spark-streaming-twitter.md
index f2c5e2b..d76150b 100644
--- a/site/docs/spark/2.0.1/spark-streaming-twitter.md
+++ b/site/docs/spark/2.0.1/spark-streaming-twitter.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_twitter_2.11:2.0.1
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-twitter_2.11:2.0.1
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.1/spark-streaming-zeromq.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.1/spark-streaming-zeromq.md 
b/site/docs/spark/2.0.1/spark-streaming-zeromq.md
index 4eb2bc7..a37270c 100644
--- a/site/docs/spark/2.0.1/spark-streaming-zeromq.md
+++ b/site/docs/spark/2.0.1/spark-streaming-zeromq.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_zeromq_2.11:2.0.1
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-zeromq_2.11:2.0.1
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.2/spark-streaming-akka.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.2/spark-streaming-akka.md 
b/site/docs/spark/2.0.2/spark-streaming-akka.md
index ff8b7f9..6854bc4 100644
--- a/site/docs/spark/2.0.2/spark-streaming-akka.md
+++ b/site/docs/spark/2.0.2/spark-streaming-akka.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_akka_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-akka_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.2/spark-streaming-mqtt.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.2/spark-streaming-mqtt.md 
b/site/docs/spark/2.0.2/spark-streaming-mqtt.md
index 50c866d..1be8bbb 100644
--- a/site/docs/spark/2.0.2/spark-streaming-mqtt.md
+++ b/site/docs/spark/2.0.2/spark-streaming-mqtt.md
@@ -45,7 +45,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_mqtt_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-mqtt_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.2/spark-streaming-twitter.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.2/spark-streaming-twitter.md 
b/site/docs/spark/2.0.2/spark-streaming-twitter.md
index 190d25c..5e61058 100644
--- a/site/docs/spark/2.0.2/spark-streaming-twitter.md
+++ b/site/docs/spark/2.0.2/spark-streaming-twitter.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_twitter_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-twitter_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/2.0.2/spark-streaming-zeromq.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/2.0.2/spark-streaming-zeromq.md 
b/site/docs/spark/2.0.2/spark-streaming-zeromq.md
index 718725d..937517d 100644
--- a/site/docs/spark/2.0.2/spark-streaming-zeromq.md
+++ b/site/docs/spark/2.0.2/spark-streaming-zeromq.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_zeromq_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-zeromq_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/current/spark-streaming-akka.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/current/spark-streaming-akka.md 
b/site/docs/spark/current/spark-streaming-akka.md
index ff8b7f9..6854bc4 100644
--- a/site/docs/spark/current/spark-streaming-akka.md
+++ b/site/docs/spark/current/spark-streaming-akka.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_akka_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-akka_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/current/spark-streaming-mqtt.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/current/spark-streaming-mqtt.md 
b/site/docs/spark/current/spark-streaming-mqtt.md
index 50c866d..1be8bbb 100644
--- a/site/docs/spark/current/spark-streaming-mqtt.md
+++ b/site/docs/spark/current/spark-streaming-mqtt.md
@@ -45,7 +45,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_mqtt_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-mqtt_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/current/spark-streaming-twitter.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/current/spark-streaming-twitter.md 
b/site/docs/spark/current/spark-streaming-twitter.md
index 190d25c..5e61058 100644
--- a/site/docs/spark/current/spark-streaming-twitter.md
+++ b/site/docs/spark/current/spark-streaming-twitter.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_twitter_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-twitter_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

http://git-wip-us.apache.org/repos/asf/bahir-website/blob/92ca3c99/site/docs/spark/current/spark-streaming-zeromq.md
----------------------------------------------------------------------
diff --git a/site/docs/spark/current/spark-streaming-zeromq.md 
b/site/docs/spark/current/spark-streaming-zeromq.md
index 718725d..937517d 100644
--- a/site/docs/spark/current/spark-streaming-zeromq.md
+++ b/site/docs/spark/current/spark-streaming-zeromq.md
@@ -44,7 +44,7 @@ Using Maven:
 This library can also be added to Spark jobs launched through `spark-shell` or 
`spark-submit` by using the `--packages` command line option.
 For example, to include it when starting the spark shell:
 
-    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming_zeromq_2.11:2.0.2
+    $ bin/spark-shell --packages 
org.apache.bahir:spark-streaming-zeromq_2.11:2.0.2
 
 Unlike using `--jars`, using `--packages` ensures that this library and its 
dependencies will be added to the classpath.
 The `--packages` argument can also be used with `bin/spark-submit`.

Reply via email to