Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion java/gradle/dse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}
}

def dseVersion = "6.0.1"
def dseVersion = "6.0.2"

// The assembly configuration will cause jar to be included in assembled fat-jar
configurations {
Expand Down
2 changes: 1 addition & 1 deletion java/gradle/oss/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

def sparkVersion = "2.2.1"
def connectorVersion = "2.0.7"
def connectorVersion = "2.0.9"

// The assembly configuration will cause jar to be included in assembled fat-jar
configurations {
Expand Down
2 changes: 1 addition & 1 deletion java/maven/dse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dse.version>6.0.1</dse.version>
<dse.version>6.0.2</dse.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion java/maven/oss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spark.version>2.2.1</spark.version>
<connector.version>2.0.7</connector.version>
<connector.version>2.0.9</connector.version>
</properties>

<!--
Expand Down
2 changes: 1 addition & 1 deletion java/sbt/dse/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ scalaVersion := "2.11.8"
resolvers += Resolver.mavenLocal // for testing
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"

val dseVersion = "6.0.1"
val dseVersion = "6.0.2"

// Please make sure that following DSE version matches your DSE cluster version.
// SBT 0.13.13 or greater required because of a dependency resolution bug
Expand Down
2 changes: 1 addition & 1 deletion java/sbt/oss/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ autoScalaLibrary := false
scalaVersion := "2.11.8"

val sparkVersion = "2.2.1"
val connectorVersion = "2.0.7"
val connectorVersion = "2.0.9"

// Please make sure that following dependencies have versions corresponding to the ones in your cluster.
// Note that spark-cassandra-connector should be provided with '--packages' flag to spark-submit command.
Expand Down
4 changes: 2 additions & 2 deletions scala/gradle/dse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ configurations {
testCompile.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
}

def dseVersion = "6.0.1"
def dseVersion = "6.0.2"

def scalaVersion = "2.11"
def scalaTestVersion = "3.0.0"
def connectorVersion = "2.0.7"
def connectorVersion = "2.0.9"
def cassandraVersion = "3.2"
def jUnitVersion = "4.12"

Expand Down
2 changes: 1 addition & 1 deletion scala/gradle/oss/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

def sparkVersion = "2.2.1"
def connectorVersion = "2.0.7"
def connectorVersion = "2.0.9"
def scalaVersion = "2.11"
def scalaTestVersion = "3.0.0"
def cassandraVersion = "3.2"
Expand Down
4 changes: 2 additions & 2 deletions scala/maven/dse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dse.version>6.0.1</dse.version>
<dse.version>6.0.2</dse.version>
<scala.version>2.11.8</scala.version>
<scala.main.version>2.11</scala.main.version>
<scalatest.version>3.0.0</scalatest.version>
<connector.version>2.0.7</connector.version>
<connector.version>2.0.9</connector.version>
<cassandra.version>3.2</cassandra.version>
<junit.version>4.12</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion scala/maven/oss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<scala.main.version>2.11</scala.main.version>
<spark.version>2.2.1</spark.version>
<scalatest.version>3.0.0</scalatest.version>
<connector.version>2.0.7</connector.version>
<connector.version>2.0.9</connector.version>
<cassandra.version>3.2</cassandra.version>
<junit.version>4.12</junit.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions scala/sbt/dse/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scalaVersion := "2.11.8"
resolvers += Resolver.mavenLocal // for testing
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"

val dseVersion = "6.0.1"
val dseVersion = "6.0.2"

// Please make sure that following DSE version matches your DSE cluster version.
// Exclusions are solely for running integrated testing
Expand All @@ -20,7 +20,7 @@ libraryDependencies += "com.datastax.dse" % "dse-spark-dependencies" % dseVersio
// The 'test/resources' Directory in should match the resources directory in the `it` directory
// for the version of the Spark Cassandra Connector in use.
val scalaTestVersion = "3.0.0"
val connectorVersion = "2.0.7"
val connectorVersion = "2.0.9"
val jUnitVersion = "4.12"
val cassandraVersion = "3.2"

Expand Down
2 changes: 1 addition & 1 deletion scala/sbt/oss/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version := "0.1"
scalaVersion := "2.11.8"

val sparkVersion = "2.2.1"
val connectorVersion = "2.0.7"
val connectorVersion = "2.0.9"
//The 'test/resources' Directory in should match the resources directory in the `it` directory
//for the version of the Spark Cassandra Connector in use.

Expand Down