mirror of
https://github.com/openlibrecommunity/olcng.git
synced 2026-07-03 14:05:17 +02:00
24 lines
306 B
Kotlin
24 lines
306 B
Kotlin
plugins {
|
|
kotlin("jvm") version "1.9.22"
|
|
application
|
|
}
|
|
|
|
group = "com.subscription"
|
|
version = "1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("AddSubscriptionKt")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|