This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
teamcity-gitea-test-task/build.gradle.kts

23 lines
306 B
Plaintext
Raw Normal View History

2023-11-30 23:46:20 +00:00
plugins {
kotlin("jvm") version "1.9.21"
id("org.jmailen.kotlinter") version "4.1.0"
2023-11-30 23:46:20 +00:00
}
group = "net.koval"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
2023-11-30 23:46:20 +00:00
}