File tree Expand file tree Collapse file tree 6 files changed +9
-27
lines changed Expand file tree Collapse file tree 6 files changed +9
-27
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ repositories {
1414 }
1515}
1616
17- def dseVersion = " 5.1.3-1 "
17+ def dseVersion = " 5.1.4 "
1818
1919// The assembly configuration will cause jar to be included in assembled fat-jar
2020configurations {
Original file line number Diff line number Diff line change 99
1010 <properties >
1111 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12- <dse .version>5.1.3-1 </dse .version>
12+ <dse .version>5.1.4 </dse .version>
1313 </properties >
1414
1515 <dependencies >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ scalaVersion := "2.11.8"
1111resolvers += Resolver .mavenLocal // for testing
1212resolvers += " DataStax Repo" at " https://repo.datastax.com/public-repos/"
1313
14- val dseVersion = " 5.1.3-1 "
14+ val dseVersion = " 5.1.4 "
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
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ configurations {
2929 testCompile. exclude group : ' org.slf4j' , module : ' log4j-over-slf4j'
3030}
3131
32- def dseVersion = " 5.1.3-1 "
32+ def dseVersion = " 5.1.4 "
3333
3434def scalaVersion = " 2.11"
3535def scalaTestVersion = " 3.0.0"
@@ -39,10 +39,7 @@ def jUnitVersion = "4.12"
3939
4040// Please make sure that following DSE version matches your DSE cluster version.
4141dependencies {
42- provided(" com.datastax.dse:dse-spark-dependencies:$dseVersion " ) {
43- exclude group : ' org.slf4j' , module : ' slf4j-log4j12'
44- exclude group : ' org.apache.cassandra'
45- }
42+ provided(" com.datastax.dse:dse-spark-dependencies:$dseVersion " )
4643// assembly "org.apache.commons:commons-math3:3.6.1"
4744// assembly "org.apache.commons:commons-csv:1.0"
4845
Original file line number Diff line number Diff line change 99
1010 <properties >
1111 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12- <dse .version>5.1.3-1 </dse .version>
12+ <dse .version>5.1.4 </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>
2424 <artifactId >dse-spark-dependencies</artifactId >
2525 <version >${dse.version} </version >
2626 <scope >provided</scope >
27- <exclusions >
28- <exclusion >
29- <groupId >org.mortbay.jetty</groupId >
30- <artifactId >*</artifactId >
31- </exclusion >
32- <exclusion >
33- <groupId >org.apache.cassandra</groupId >
34- <artifactId >*</artifactId >
35- </exclusion >
36- </exclusions >
3727 </dependency >
3828 <!-- Your dependencies, 'provided' are not included in jar -->
3929 <!-- <dependency>-->
Original file line number Diff line number Diff line change @@ -8,19 +8,14 @@ scalaVersion := "2.11.8"
88resolvers += Resolver .mavenLocal // for testing
99resolvers += " DataStax Repo" at " https://repo.datastax.com/public-repos/"
1010
11- val dseVersion = " 5.1.3-1 "
11+ val dseVersion = " 5.1.4 "
1212
1313// Please make sure that following DSE version matches your DSE cluster version.
1414// Exclusions are solely for running integrated testing
1515// Warning Sbt 0.13.13 or greater is required due to a bug with dependency resolution
1616libraryDependencies += (
17- " com.datastax.dse" % " dse-spark-dependencies" % dseVersion % " provided" excludeAll (
18- ExclusionRule (" org.slf4j" ," slf4j-log4j12" ),
19- ExclusionRule (" org.mortbay.jetty" ),
20- ExclusionRule (" javax.servlet" ),
21- ExclusionRule (" org.apache.cassandra" )
22- )
23- )
17+ " com.datastax.dse" % " dse-spark-dependencies" % dseVersion % " provided"
18+ )
2419
2520// Test Dependencies
2621// The 'test/resources' Directory in should match the resources directory in the `it` directory
You can’t perform that action at this time.
0 commit comments