-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
50 lines (43 loc) · 1.51 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
plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.72"
id "com.github.johnrengelman.shadow" version "6.0.0"
}
group "io.github.potatocurry"
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.jessecorbett:diskord:1.7.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8"
implementation "com.github.PotatoCurry:Kwizlet:0.5.5"
implementation "com.github.PotatoCurry:Kashoot:0.2.2"
implementation "com.github.jkcclemens:khttp:0.1.0"
// implementation "fastily:jwiki:1.7.0"
implementation "moe.tlaster:kotlinpgp:1.0.20"
implementation "net.sf.biweekly:biweekly:0.6.3"
implementation "me.xdrop:fuzzywuzzy:1.3.1"
// implementation "net.jeremybrooks:knicker:2.4.1"
// implementation "com.github.PotatoCurry:MerriamWebsterJavaApi:888b9ce0da"
implementation "com.github.mfornos:humanize-slim:1.2.2"
implementation "com.beust:klaxon:5.3"
implementation "org.jsoup:jsoup:1.13.1"
implementation "com.kennycason:kumo-core:1.27"
implementation "org.slf4j:slf4j-api:1.7.30"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "io.sentry:sentry-logback:1.7.30"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
jar {
manifest {
attributes "Main-Class": "io.github.potatocurry.shrewd.MainKt"
}
}
task stage dependsOn shadowJar