Inceptum/launcher/build.gradle.kts

12 lines
259 B
Plaintext
Raw Normal View History

plugins {
2022-09-04 21:21:24 +02:00
id("inceptum.library-conventions")
}
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")
}