Initial commit
This commit is contained in:
28
build.gradle.kts
Normal file
28
build.gradle.kts
Normal file
@@ -0,0 +1,28 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "1.9.21"
|
||||
application
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "me.alex_s168.kreflect.TermKt"
|
||||
}
|
||||
|
||||
group = "me.alex_s168"
|
||||
version = "0.1"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-io-bytestring:0.3.1")
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
Reference in New Issue
Block a user