-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (25 loc) · 922 Bytes
/
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
group 'com.data'
version '0.1'
apply plugin: 'java'
apply plugin: 'scala'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.scala-lang:scala-library:2.11.8'
compile 'org.scalatest:scalatest_2.11:3.0.4'
compile group: 'org.apache.spark', name: 'spark-core_2.11', version: '2.3.2'
compile group: 'org.apache.spark', name: 'spark-sql_2.11', version: '2.3.2'
compile 'org.apache.logging.log4j:log4j-api:2.9.1'
compile 'org.apache.logging.log4j:log4j-core:2.9.1'
compile 'org.apache.logging.log4j:log4j-api-scala_2.11:11.0'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
// YAML handling
// https://mvnrepository.com/artifact/net.jcazevedo/moultingyaml
compile group: 'net.jcazevedo', name: 'moultingyaml_2.11', version: '0.4.0'
}
task copyDeps(type: Copy) {
from(configurations.runtime)
into 'build/libs/libext'
}