Skip to content

Commit 2a7830a

Browse files
committed
DSP-12329 bump DSE templates to 5.1.0
1 parent b617b2a commit 2a7830a

File tree

6 files changed

+15
-17
lines changed

6 files changed

+15
-17
lines changed

java/gradle/dse/build.gradle

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

16-
def dseVersion = "5.0.4"
16+
def dseVersion = "5.1.0"
1717

1818
// The assembly configuration will cause jar to be included in assembled fat-jar
1919
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.0.4</dse.version>
12+
<dse.version>5.1.0</dse.version>
1313
</properties>
1414

1515
<dependencies>

java/sbt/dse/build.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ crossPaths := false
66

77
autoScalaLibrary := false
88

9+
scalaVersion := "2.11.8"
10+
911
resolvers += "DataStax Repo" at "https://datastax.artifactoryonline.com/datastax/public-repos/"
1012

11-
val dseVersion = "5.0.4"
13+
val dseVersion = "5.1.0"
1214

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

scala/gradle/dse/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ configurations {
2828
testCompile.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
2929
}
3030

31-
def dseVersion = "5.0.4"
31+
def dseVersion = "5.1.0"
3232

33-
def scalaVersion = "2.10"
33+
def scalaVersion = "2.11"
3434
def scalaTestVersion = "3.0.0"
35-
def connectorVersion = "1.6.0"
35+
def connectorVersion = "2.0.0-M3"
3636
def cassandraVersion = "3.0.2"
3737
def jUnitVersion = "4.12"
3838

scala/maven/dse/pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<dse.version>5.0.4</dse.version>
13-
<scala.version>2.10.6</scala.version>
14-
<scala.main.version>2.10</scala.main.version>
12+
<dse.version>5.1.0</dse.version>
13+
<scala.version>2.11.8</scala.version>
14+
<scala.main.version>2.11</scala.main.version>
1515
<scalatest.version>3.0.0</scalatest.version>
16-
<connector.version>1.6.0</connector.version>
16+
<connector.version>2.0.0-M3</connector.version>
1717
<cassandra.version>3.0.2</cassandra.version>
1818
<junit.version>4.12</junit.version>
1919
</properties>
@@ -29,10 +29,6 @@
2929
<groupId>org.mortbay.jetty</groupId>
3030
<artifactId>*</artifactId>
3131
</exclusion>
32-
<exclusion>
33-
<groupId>javax.servlet</groupId>
34-
<artifactId>*</artifactId>
35-
</exclusion>
3632
<exclusion>
3733
<groupId>org.apache.cassandra</groupId>
3834
<artifactId>*</artifactId>

scala/sbt/dse/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name := "writeRead"
33

44
version := "0.1"
55

6-
scalaVersion := "2.10.6"
6+
scalaVersion := "2.11.8"
77

88
resolvers += "DataStax Repo" at "https://datastax.artifactoryonline.com/datastax/public-repos/"
99

10-
val dseVersion = "5.0.4"
10+
val dseVersion = "5.1.0"
1111

1212
// Please make sure that following DSE version matches your DSE cluster version.
1313
// Exclusions are solely for running integrated testing
@@ -25,7 +25,7 @@ libraryDependencies += (
2525
// The 'test/resources' Directory in should match the resources directory in the `it` directory
2626
// for the version of the Spark Cassandra Connector in use.
2727
val scalaTestVersion = "3.0.0"
28-
val connectorVersion = "1.6.0"
28+
val connectorVersion = "2.0.0-M3"
2929
val jUnitVersion = "4.12"
3030
val cassandraVersion = "3.0.2"
3131

0 commit comments

Comments
 (0)