-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle.kts
64 lines (54 loc) · 1.69 KB
/
build.gradle.kts
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
plugins {
application
kotlin("jvm") version "1.9.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
id("app.cash.sqldelight") version "2.0.0"
}
group = "me.santio"
version = "1.0"
repositories {
mavenLocal()
mavenCentral()
google()
maven("https://jitpack.io")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatype-oss-snapshots"
}
}
sqldelight {
databases {
create("Minehut") {
packageName.set("me.santio.minehututils.db")
}
}
}
dependencies {
// Kotlin
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation(kotlin("stdlib-jdk8"))
// JDA
implementation("io.github.cdimascio:dotenv-kotlin:6.4.1")
implementation("net.dv8tion:JDA:5.0.0-beta.15") {
exclude("opus-java")
}
// Unirest
implementation("com.konghq:unirest-java-core:4.0.12")
implementation("com.konghq:unirest-object-mappers-gson:4.0.12")
implementation("com.google.code.gson:gson:2.10.1")
// Libraries
implementation("org.reflections:reflections:0.10.2")
implementation("me.santio.Coffee:jda:5ee44b745d")
// Adventure API
implementation("net.kyori:adventure-text-minimessage:4.14.0")
implementation("net.kyori:adventure-text-serializer-plain:4.14.0")
implementation("net.kyori:adventure-text-serializer-legacy:4.14.0")
implementation("net.kyori:adventure-text-serializer-ansi:4.14.0")
implementation("net.kyori:ansi:1.1.0-SNAPSHOT")
}
kotlin {
jvmToolchain(11)
}
application {
mainClass.set("me.santio.minehututils.MinehutUtilsKt")
}