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

Commit b962c4f

Browse files
Merge pull request #3 from FabianMeiswinkel/master
Updating dependencies to Spark 2.4 for Databricks runtimes 6.*
2 parents 51a1656 + acdf751 commit b962c4f

File tree

2 files changed

+52
-7
lines changed

2 files changed

+52
-7
lines changed

.gitignore

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,49 @@
22
*.class
33
*.log
44
# Ignore files generated by IntelliJ
5-
*.iml
5+
*.iml
6+
7+
# Build output
8+
target/
9+
*.class
10+
11+
# Log file
12+
*.log
13+
14+
# BlueJ files
15+
*.ctxt
16+
17+
# Mobile Tools for Java (J2ME)
18+
.mtj.tmp/
19+
20+
# Package Files #
21+
*.jar
22+
*.war
23+
*.ear
24+
*.zip
25+
*.tar.gz
26+
*.rar
27+
28+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
29+
hs_err_pid*
30+
31+
# IDE
32+
.idea/
33+
*.iml
34+
35+
# macOS
36+
.DS_Store
37+
38+
# Azure Functions
39+
local.settings.json
40+
bin/
41+
obj/
42+
.metals/metals.h2.db
43+
.classpath
44+
.factorypath
45+
.project
46+
.metals/metals.lock.db
47+
.settings/org.eclipse.jdt.core.prefs
48+
.settings/org.eclipse.jdt.apt.core.prefs
49+
.settings/org.eclipse.m2e.core.prefs
50+
.vscode/settings.json

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.microsoft.azure.cosmosdb</groupId>
88
<artifactId>spark-connector-sample</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.1.0</version>
1010

1111
<licenses>
1212
<license>
@@ -19,27 +19,27 @@
1919
<dependency>
2020
<groupId>org.apache.spark</groupId>
2121
<artifactId>spark-core_2.11</artifactId>
22-
<version>2.1.0</version>
22+
<version>2.4.0</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.apache.spark</groupId>
2626
<artifactId>spark-sql_2.11</artifactId>
27-
<version>2.1.0</version>
27+
<version>2.4.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.spark</groupId>
3131
<artifactId>spark-streaming_2.11</artifactId>
32-
<version>2.1.0</version>
32+
<version>2.4.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.apache.spark</groupId>
3636
<artifactId>spark-mllib_2.11</artifactId>
37-
<version>2.1.0</version>
37+
<version>2.4.0</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>com.datastax.spark</groupId>
4141
<artifactId>spark-cassandra-connector_2.11</artifactId>
42-
<version>2.0.6</version>
42+
<version>2.4.1</version>
4343
</dependency>
4444
</dependencies>
4545

0 commit comments

Comments
 (0)