-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (25 loc) · 1.1 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
plugins {
id 'java'
id 'scala'
}
group 'com.gelerion.spark.bin.packing.partitioner'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.spark/spark-sql
compile group: 'org.apache.spark', name: 'spark-sql_2.12', version: '2.4.3'
// https://mvnrepository.com/artifact/net.ruippeixotog/scala-scraper
compile group: 'net.ruippeixotog', name: 'scala-scraper_2.12', version: '2.1.0'
// logging
compile group: 'org.apache.logging.log4j', name: 'log4j-api-scala_2.12', version: '11.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.1'
// https://mvnrepository.com/artifact/com.softwaremill.sttp/core
compile group: 'com.softwaremill.sttp', name: 'core_2.12', version: '1.6.4'
// https://mvnrepository.com/artifact/org.rogach/scallop
compile group: 'org.rogach', name: 'scallop_2.12', version: '3.3.1'
//testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.scalactic:scalactic_2.12:3.0.8'
testCompile 'org.scalatest:scalatest_2.12:3.0.8'
}