You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/02/25 12:34:18 UTC

[camel-kafka-connector-examples] 06/31: CQL Examples: Moved to tar.gz

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch zip-vs-tar.gz
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git

commit 29debc8579f942d26a58eb24f6ff2e5e079fbdfe
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 25 13:26:18 2021 +0100

    CQL Examples: Moved to tar.gz
---
 cql/cql-sink/README.adoc   |  8 ++++----
 cql/cql-source/README.adoc | 12 ++++++------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/cql/cql-sink/README.adoc b/cql/cql-sink/README.adoc
index fdac813..0846190 100644
--- a/cql/cql-sink/README.adoc
+++ b/cql/cql-sink/README.adoc
@@ -28,8 +28,8 @@ In this example we'll use `/home/oscerd/connectors/`
 
 ```
 > cd /home/oscerd/connectors/
-> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-cql-kafka-connector/0.8.0/camel-cql-kafka-connector-0.8.0-package.zip
-> unzip camel-cql-kafka-connector-0.8.0-package.zip
+> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-cql-kafka-connector/0.8.0/camel-cql-kafka-connector-0.8.0-package.tar.gz
+> untar.gz camel-cql-kafka-connector-0.8.0-package.tar.gz
 ```
 
 ## Setting up Apache Cassandra
@@ -210,8 +210,8 @@ So we need to do something like this:
 
 ```
 > cd my-connectors/
-> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-cql-kafka-connector/0.8.0/camel-cql-kafka-connector-0.8.0-package.zip
-> unzip camel-cql-kafka-connector-0.8.0-package.zip
+> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-cql-kafka-connector/0.8.0/camel-cql-kafka-connector-0.8.0-package.tar.gz
+> untar.gz camel-cql-kafka-connector-0.8.0-package.tar.gz
 ```
 
 Now we can start the build 
diff --git a/cql/cql-source/README.adoc b/cql/cql-source/README.adoc
index 40d52e7..09db1d8 100644
--- a/cql/cql-source/README.adoc
+++ b/cql/cql-source/README.adoc
@@ -120,12 +120,12 @@ Now we need to build the connector:
 > mvn clean package
 ```
 
-In this example we'll use `/home/oscerd/connectors/` as plugin.path, but we'll need the generated zip from the previous build
+In this example we'll use `/home/oscerd/connectors/` as plugin.path, but we'll need the generated tar.gz from the previous build
 
 ```
 > cd /home/oscerd/connectors/
-> cp /home/oscerd/playground/cql-extended/target/cql-extended-0.8.0-package.zip .
-> unzip cql-extended-0.8.0-package.zip
+> cp /home/oscerd/playground/cql-extended/target/cql-extended-0.8.0-package.tar.gz .
+> untar.gz cql-extended-0.8.0-package.tar.gz
 ```
 
 and we're now ready to setting up the Cassandra cluster.
@@ -369,12 +369,12 @@ Now we need to build the connector:
 > mvn clean package
 ```
 
-In this example we'll use `/home/oscerd/connectors/` as plugin.path, but we'll need the generated zip from the previous build
+In this example we'll use `/home/oscerd/connectors/` as plugin.path, but we'll need the generated tar.gz from the previous build
 
 ```
 > cd my-connectors/
-> cp /home/oscerd/playground/cql-extended/target/cql-extended-0.8.0-package.zip .
-> unzip cql-extended-0.8.0-package.zip
+> cp /home/oscerd/playground/cql-extended/target/cql-extended-0.8.0-package.tar.gz .
+> untar.gz cql-extended-0.8.0-package.tar.gz
 ```
 
 Now we can start the build