Inceptum/launcher/build.gradle.kts

14 lines
409 B
Plaintext
Raw Normal View History

plugins {
id("inceptum.library")
2022-11-02 00:38:04 +01:00
id("inceptum.gson-compile")
}
dependencies {
val jfCommonsVersion: String by rootProject.extra
2023-05-04 11:25:37 +02:00
val jbAnnotationsVersion: String by rootProject.extra
2022-09-04 21:21:24 +02:00
api(project(":common"))
api("io.gitlab.jfronny:commons-http-server:$jfCommonsVersion") // required for launcher-gtk for some reason
2023-05-04 11:25:37 +02:00
compileOnly("org.jetbrains:annotations:$jbAnnotationsVersion")
}