-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (34 loc) · 1.2 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
plugins {
// Apply the scala plugin to add support for Scala
id 'scala'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
allprojects {
apply plugin: 'maven'
group = 'stats'
version = '0.1.0'
status = 'Release'
}
repositories {
jcenter()
mavenCentral()
}
ext {
sparkVersion = "2.4.4"
scalaVersion = "2.11"
}
dependencies {
implementation "org.scala-lang:scala-library:$scalaVersion"
implementation group: 'org.apache.spark', name: "spark-sql_$scalaVersion", version: "$sparkVersion"
implementation group: 'org.apache.spark', name: "spark-core_$scalaVersion", version: "$sparkVersion"
implementation group: 'org.apache.spark', name: "spark-mllib_$scalaVersion", version: "$sparkVersion"
implementation group: 'io.circe', name: "circe-core_$scalaVersion", version: '0.12.0-M3'
implementation group: 'io.circe', name: "circe-generic_$scalaVersion", version: '0.12.0-M3'
implementation group: 'io.circe', name: "circe-parser_$scalaVersion", version: '0.12.0-M3'
implementation group: 'io.circe', name: "circe-generic-extras_$scalaVersion", version: '0.12.0-M3'
}
shadowJar {
baseName = "ks-test"
zip64 true
mergeServiceFiles()
}