Files
OpenGraphKt/demo-remote/build.gradle.kts
Julien Lengrand-Lambert dc565a075b Upgrades to Java 24
2025-10-19 02:38:12 +02:00

28 lines
353 B
Kotlin

plugins {
kotlin("jvm")
application
}
group = "fr.lengrand"
repositories {
mavenCentral()
}
dependencies {
implementation("fr.lengrand:opengraphkt:0.1.0")
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(24)
}
application {
mainClass = "fr.lengrand.opengraphkt.MainKt"
}