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
4 changes: 2 additions & 2 deletions 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.4"
def dseVersion = "6.0.5"

// The assembly configuration will cause jar to be included in assembled fat-jar
configurations {
Expand Down Expand Up @@ -43,4 +43,4 @@ shadowJar {

//shadowJar {
// relocate 'org.apache.commons.csv', 'shaded.org.apache.commons.csv'
//}
//}
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.4</dse.version>
<dse.version>6.0.5</dse.version>
</properties>

<dependencies>
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.4"
val dseVersion = "6.0.5"

// 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
4 changes: 2 additions & 2 deletions scala/gradle/dse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ configurations {
testCompile.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
}

def dseVersion = "6.0.4"
def dseVersion = "6.0.5"

def scalaVersion = "2.11"
def scalaTestVersion = "3.0.0"
Expand All @@ -56,4 +56,4 @@ shadowJar {

//shadowJar {
// relocate 'org.apache.commons.csv', 'shaded.org.apache.commons.csv'
//}
//}
2 changes: 1 addition & 1 deletion scala/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.4</dse.version>
<dse.version>6.0.5</dse.version>
<scala.version>2.11.8</scala.version>
<scala.main.version>2.11</scala.main.version>
<scalatest.version>3.0.0</scalatest.version>
Expand Down
2 changes: 1 addition & 1 deletion 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.4"
val dseVersion = "6.0.5"

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