Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from FabianMeiswinkel/master
Browse files Browse the repository at this point in the history
Updating dependencies to Spark 2.4 for Databricks runtimes 6.*
  • Loading branch information
FabianMeiswinkel authored Jun 15, 2020
2 parents 51a1656 + acdf751 commit b962c4f
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 7 deletions.
47 changes: 46 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,49 @@
*.class
*.log
# Ignore files generated by IntelliJ
*.iml
*.iml

# Build output
target/
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# IDE
.idea/
*.iml

# macOS
.DS_Store

# Azure Functions
local.settings.json
bin/
obj/
.metals/metals.h2.db
.classpath
.factorypath
.project
.metals/metals.lock.db
.settings/org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.apt.core.prefs
.settings/org.eclipse.m2e.core.prefs
.vscode/settings.json
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.microsoft.azure.cosmosdb</groupId>
<artifactId>spark-connector-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.0</version>

<licenses>
<license>
Expand All @@ -19,27 +19,27 @@
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.11</artifactId>
<version>2.1.0</version>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.11</artifactId>
<version>2.1.0</version>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_2.11</artifactId>
<version>2.1.0</version>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-mllib_2.11</artifactId>
<version>2.1.0</version>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>com.datastax.spark</groupId>
<artifactId>spark-cassandra-connector_2.11</artifactId>
<version>2.0.6</version>
<version>2.4.1</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit b962c4f

Please sign in to comment.