Skip to content

Commit 0630e63

Browse files
authored
Merge pull request #24 from datastax/5.1.8-support
5.1.8 support
2 parents 93738e9 + 25af9c1 commit 0630e63

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ Please note that DSE projects templates are meant to be built with `sbt` 0.13.13
2222
unresolved dependencies errors, please update `sbt` and than clean `ivy` cache (with
2323
`rm ~/.ivy2/cache/com.datastax.dse/dse-spark-dependencies/` command)
2424

25-
Note that currently sbt 1.x.y is not supported.
26-
2725
### OSS
2826

2927
If you are planning to execute your Spark Application against Open Source Apache Spark and Open

java/gradle/dse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repositories {
1414
}
1515
}
1616

17-
def dseVersion = "5.1.7"
17+
def dseVersion = "5.1.8"
1818

1919
// The assembly configuration will cause jar to be included in assembled fat-jar
2020
configurations {

java/maven/dse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<dse.version>5.1.7</dse.version>
12+
<dse.version>5.1.8</dse.version>
1313
</properties>
1414

1515
<dependencies>

java/sbt/dse/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ scalaVersion := "2.11.8"
1111
resolvers += Resolver.mavenLocal // for testing
1212
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"
1313

14-
val dseVersion = "5.1.7"
14+
val dseVersion = "5.1.8"
1515

1616
// Please make sure that following DSE version matches your DSE cluster version.
1717
// SBT 0.13.13 or greater required because of a dependency resolution bug

scala/gradle/dse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ configurations {
2929
testCompile.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
3030
}
3131

32-
def dseVersion = "5.1.7"
32+
def dseVersion = "5.1.8"
3333

3434
def scalaVersion = "2.11"
3535
def scalaTestVersion = "3.0.0"

scala/maven/dse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<dse.version>5.1.7</dse.version>
12+
<dse.version>5.1.8</dse.version>
1313
<scala.version>2.11.8</scala.version>
1414
<scala.main.version>2.11</scala.main.version>
1515
<scalatest.version>3.0.0</scalatest.version>

scala/sbt/dse/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ scalaVersion := "2.11.8"
88
resolvers += Resolver.mavenLocal // for testing
99
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"
1010

11-
val dseVersion = "5.1.7"
11+
val dseVersion = "5.1.8"
1212

1313
// Please make sure that following DSE version matches your DSE cluster version.
1414
// Exclusions are solely for running integrated testing

0 commit comments

Comments
 (0)