File tree Expand file tree Collapse file tree 12 files changed +16
-33
lines changed Expand file tree Collapse file tree 12 files changed +16
-33
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ repositories {
14
14
}
15
15
}
16
16
17
- def dseVersion = " 6.0.0 "
17
+ def dseVersion = " 6.0.1 "
18
18
19
19
// The assembly configuration will cause jar to be included in assembled fat-jar
20
20
configurations {
@@ -32,9 +32,7 @@ configurations {
32
32
// Please make sure that following dependencies have versions corresponding to the ones in your cluster.
33
33
// Note that spark-cassandra-connector should be provided with '--packages' flag to spark-submit command.
34
34
dependencies {
35
- provided(" com.datastax.dse:dse-spark-dependencies:$dseVersion " ) {
36
- exclude group : ' org.apache.directory.api'
37
- }
35
+ provided " com.datastax.dse:dse-spark-dependencies:$dseVersion "
38
36
// assembly "org.apache.commons:commons-math3:3.6.1"
39
37
// assembly "org.apache.commons:commons-csv:1.0"
40
38
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
mavenCentral()
11
11
}
12
12
13
- def sparkVersion = " 2.2.0 "
13
+ def sparkVersion = " 2.2.1 "
14
14
def connectorVersion = " 2.0.7"
15
15
16
16
// The assembly configuration will cause jar to be included in assembled fat-jar
Original file line number Diff line number Diff line change 9
9
10
10
<properties >
11
11
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
- <dse .version>6.0.0 </dse .version>
12
+ <dse .version>6.0.1 </dse .version>
13
13
</properties >
14
14
15
15
<dependencies >
18
18
<artifactId >dse-spark-dependencies</artifactId >
19
19
<version >${dse.version} </version >
20
20
<scope >provided</scope >
21
- <exclusions >
22
- <exclusion >
23
- <groupId >org.apache.directory.api</groupId >
24
- <artifactId >*</artifactId >
25
- </exclusion >
26
- </exclusions >
27
21
</dependency >
28
22
<!-- Your dependencies, 'provided' are not included in jar -->
29
23
<!-- <dependency>-->
Original file line number Diff line number Diff line change 9
9
10
10
<properties >
11
11
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
- <spark .version>2.2.0 </spark .version>
12
+ <spark .version>2.2.1 </spark .version>
13
13
<connector .version>2.0.7</connector .version>
14
14
</properties >
15
15
Original file line number Diff line number Diff line change @@ -11,12 +11,11 @@ scalaVersion := "2.11.8"
11
11
resolvers += Resolver .mavenLocal // for testing
12
12
resolvers += " DataStax Repo" at " https://repo.datastax.com/public-repos/"
13
13
14
- val dseVersion = " 6.0.0 "
14
+ val dseVersion = " 6.0.1 "
15
15
16
16
// Please make sure that following DSE version matches your DSE cluster version.
17
17
// SBT 0.13.13 or greater required because of a dependency resolution bug
18
- libraryDependencies += " com.datastax.dse" % " dse-spark-dependencies" % dseVersion % " provided" exclude(
19
- " org.apache.directory.api" , " *" )
18
+ libraryDependencies += " com.datastax.dse" % " dse-spark-dependencies" % dseVersion % " provided"
20
19
21
20
// Your dependencies
22
21
// libraryDependencies += "org.apache.commons" % "commons-math3" % "3.6.1"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ autoScalaLibrary := false
8
8
9
9
scalaVersion := " 2.11.8"
10
10
11
- val sparkVersion = " 2.2.0 "
11
+ val sparkVersion = " 2.2.1 "
12
12
val connectorVersion = " 2.0.7"
13
13
14
14
// Please make sure that following dependencies have versions corresponding to the ones in your cluster.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ configurations {
29
29
testCompile. exclude group : ' org.slf4j' , module : ' log4j-over-slf4j'
30
30
}
31
31
32
- def dseVersion = " 6.0.0 "
32
+ def dseVersion = " 6.0.1 "
33
33
34
34
def scalaVersion = " 2.11"
35
35
def scalaTestVersion = " 3.0.0"
@@ -39,9 +39,7 @@ def jUnitVersion = "4.12"
39
39
40
40
// Please make sure that following DSE version matches your DSE cluster version.
41
41
dependencies {
42
- provided(" com.datastax.dse:dse-spark-dependencies:$dseVersion " ) {
43
- exclude group : ' org.apache.directory.api'
44
- }
42
+ provided(" com.datastax.dse:dse-spark-dependencies:$dseVersion " )
45
43
// assembly "org.apache.commons:commons-math3:3.6.1"
46
44
// assembly "org.apache.commons:commons-csv:1.0"
47
45
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
mavenCentral()
11
11
}
12
12
13
- def sparkVersion = " 2.2.0 "
13
+ def sparkVersion = " 2.2.1 "
14
14
def connectorVersion = " 2.0.7"
15
15
def scalaVersion = " 2.11"
16
16
def scalaTestVersion = " 3.0.0"
Original file line number Diff line number Diff line change 9
9
10
10
<properties >
11
11
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
- <dse .version>6.0.0 </dse .version>
12
+ <dse .version>6.0.1 </dse .version>
13
13
<scala .version>2.11.8</scala .version>
14
14
<scala .main.version>2.11</scala .main.version>
15
15
<scalatest .version>3.0.0</scalatest .version>
24
24
<artifactId >dse-spark-dependencies</artifactId >
25
25
<version >${dse.version} </version >
26
26
<scope >provided</scope >
27
- <exclusions >
28
- <exclusion >
29
- <groupId >org.apache.directory.api</groupId >
30
- <artifactId >*</artifactId >
31
- </exclusion >
32
- </exclusions >
33
27
</dependency >
34
28
<!-- Your dependencies, 'provided' are not included in jar -->
35
29
<!-- <dependency>-->
Original file line number Diff line number Diff line change 11
11
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
12
<scala .version>2.11.8</scala .version>
13
13
<scala .main.version>2.11</scala .main.version>
14
- <spark .version>2.2.0 </spark .version>
14
+ <spark .version>2.2.1 </spark .version>
15
15
<scalatest .version>3.0.0</scalatest .version>
16
16
<connector .version>2.0.7</connector .version>
17
17
<cassandra .version>3.2</cassandra .version>
You can’t perform that action at this time.
0 commit comments