-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (34 loc) · 807 Bytes
/
build.gradle
File metadata and controls
41 lines (34 loc) · 807 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
33
34
35
36
37
38
39
40
41
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '4.0.4'
id 'org.jetbrains.kotlin.jvm' version '1.3.41'
}
group 'me.din0s'
version '1.0'
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
implementation 'org.apache.pdfbox:pdfbox:2.0.13'
implementation 'org.jsoup:jsoup:1.12.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'org.json:json:20190722'
}
compileJava {
options.encoding = 'UTF-8'
mainClassName = 'me.din0s.AppKt'
}
shadowJar {
classifier = ''
version = ''
}