mapm/build.gradle.kts

22 lines
325 B
Plaintext
Raw Normal View History

2024-08-28 13:29:10 +10:00
plugins {
kotlin("jvm") version "2.0.0"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("com.github.kittinunf.fuel:fuel:3.0.0-alpha03")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}