-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (43 loc) · 1.16 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
47
48
49
50
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.0.0'
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.3.72'
}
group 'org.example'
version '1.0-SNAPSHOT'
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
mainClassName = 'ReportGeneratorKt'
jar {
manifest {
attributes "Main-Class": '.ReportGeneratorKt'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/libs-milestone/"
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlin:kotlin-reflect"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.20.0"
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation "it.skrape:skrapeit-core:1.0.0-alpha6"
implementation 'de.neuland-bfi:jade4j:1.3.2'
}