Inceptum/launcher/build.gradle.kts

13 lines
291 B
Plaintext
Raw Normal View History

plugins {
2022-09-04 21:21:24 +02:00
id("inceptum.library-conventions")
2022-11-02 00:38:04 +01:00
id("inceptum.gson-compile")
}
dependencies {
val jlhttpVersion: String by rootProject.extra
2022-09-04 21:21:24 +02:00
api(project(":common"))
implementation("net.freeutils:jlhttp:$jlhttpVersion")
compileOnly("org.jetbrains:annotations:23.0.0")
}