-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
39 lines (30 loc) · 1.06 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
import io.github.openminigameserver.arcadiumgradle.oms
plugins {
id("io.github.openminigameserver.arcadiumgradle") version "1.0-SNAPSHOT"
}
nickarcade {
isCoreProject = true
}
val cloudVersion = "1.5.0-SNAPSHOT"
val configurateVersion = "4.0.0"
val kMongoVersion = "4.2.3"
val coroutinesVersion = "1.4.2"
val adventureVersion = "4.0.0-SNAPSHOT"
val ifVersion = "0.9.5"
dependencies {
//Hypixel API Client
api(oms("HypixelApiClient"))
//Jetbrains Annotations
compileOnly("org.jetbrains:annotations:20.1.0")
//Cloud - Commands
api("cloud.commandframework:cloud-paper:$cloudVersion")
api("cloud.commandframework:cloud-annotations:$cloudVersion")
api("cloud.commandframework:cloud-kotlin-extensions:$cloudVersion")
//Configurations
api("org.spongepowered:configurate-yaml:$configurateVersion")
api("org.spongepowered:configurate-extra-kotlin:$configurateVersion")
//Database I/O
api("org.litote.kmongo:kmongo-coroutine:$kMongoVersion")
//Inventory UIs
api("com.github.stefvanschie.inventoryframework:IF:$ifVersion")
}