-
-
Save aboussetta/ccb6dd2679e36120df79821036d82d37 to your computer and use it in GitHub Desktop.
Revisions
-
hkhamm revised this gist
Aug 17, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,8 +8,8 @@ rm *.jar curl -o ivy-2.3.0.jar \ 'http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar' curl -o spark-cassandra-connector_2.10-1.0.0-rc2.jar \ 'http://search.maven.org/remotecontent?filepath=com/datastax/spark/spark-cassandra-connector_2.10/1.0.0-rc2/spark-cassandra-connector_2.10-1.0.0-rc2.jar' java -jar ivy-2.3.0.jar -dependency org.apache.cassandra cassandra-thrift 2.0.9 -retrieve "[artifact]-[revision](-[classifier]).[ext]" java -jar ivy-2.3.0.jar -dependency com.datastax.cassandra cassandra-driver-core 2.0.3 -retrieve "[artifact]-[revision](-[classifier]).[ext]" -
hkhamm revised this gist
Aug 16, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ #!/bin/bash # Installs the spark-cassandra-connector and support libs mkdir /opt/connector cd /opt/connector rm *.jar curl -o ivy-2.3.0.jar \ -
hkhamm created this gist
Aug 15, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ #!/bin/bash # Installs the spark-cassandra-connector and support libs rm *.jar curl -o ivy-2.3.0.jar \ 'http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar' curl -o spark-cassandra-connector_2.10-1.0.0-beta1.jar \ 'http://search.maven.org/remotecontent?filepath=com/datastax/spark/spark-cassandra-connector_2.10/1.0.0-beta1/spark-cassandra-connector_2.10-1.0.0-beta1.jar' java -jar ivy-2.3.0.jar -dependency org.apache.cassandra cassandra-thrift 2.0.9 -retrieve "[artifact]-[revision](-[classifier]).[ext]" java -jar ivy-2.3.0.jar -dependency com.datastax.cassandra cassandra-driver-core 2.0.3 -retrieve "[artifact]-[revision](-[classifier]).[ext]" java -jar ivy-2.3.0.jar -dependency joda-time joda-time 2.3 -retrieve "[artifact]-[revision](-[classifier]).[ext]" java -jar ivy-2.3.0.jar -dependency org.joda joda-convert 1.6 -retrieve "[artifact]-[revision](-[classifier]).[ext]" rm -f *-{sources,javadoc}.jar