mirror of
https://github.com/jlengrand/OpenGraphKt.git
synced 2026-03-10 08:31:23 +00:00
28 lines
353 B
Kotlin
28 lines
353 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
application
|
|
}
|
|
|
|
group = "fr.lengrand"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("fr.lengrand:opengraphkt:0.0.2")
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(23)
|
|
}
|
|
|
|
application {
|
|
mainClass = "fr.lengrand.opengraphkt.MainKt"
|
|
}
|