-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (38 loc) · 1.11 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
id "scala"
id 'java-library'
}
scala {
sourceCompatibility = "2.12"
targetCompatibility = "2.12"
}
java {
withSourcesJar()
}
repositories {
mavenCentral()
maven {
name "sonatype-releases"
url "https://oss.sonatype.org/content/repositories/releases/"
}
maven {
name "Typesafe repository"
url "https://repo.typesafe.com/typesafe/releases/"
}
maven {
name "Second Typesafe repo"
url "https://repo.typesafe.com/typesafe/maven-releases/"
}
}
dependencies {
compileOnly group: "org.apache.spark", name: 'spark-streaming_2.12', version: '2.4.8'
compileOnly group: "org.apache.spark", name: 'spark-sql_2.12', version: '2.4.8'
testImplementation group: "org.scalatest", name : "scalatest_2.12", version: "3.2.2"
testImplementation group: "org.scalacheck", name: 'scalacheck_2.12', version: '1.15.2'
testImplementation group: "com.holdenkarau", name: 'spark-testing-base_2.12', version: '2.4.8_1.3.0'
}
configurations {
testImplementation.extendsFrom compileOnly
}
group "com.holdenkarau"
version "0.0.1"