-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (26 loc) · 821 Bytes
/
build.gradle
File metadata and controls
32 lines (26 loc) · 821 Bytes
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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
sourceCompatibility = 1.8
compileKotlin { kotlinOptions.jvmTarget = '1.8' }
compileTestKotlin { kotlinOptions.jvmTarget = '1.8' }
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
compile 'com.github.kittinunf.fuel:fuel:2.0.1'
compile 'com.github.kittinunf.fuel:fuel-gson:2.0.1'
compile 'com.google.code.gson:gson:2.8.5'
compile 'com.xebialabs.restito:restito:0.9.3'
compile 'net.sourceforge.htmlcleaner:htmlcleaner:2.2'
testCompile 'junit:junit:4.12'
}
jar {
manifest {
attributes 'Main-Class': 'se.stenervall.webcrawlie.WebCrawler'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}