This commit is contained in:
2025-08-21 20:21:11 +02:00
commit 0c3b927f9d
8 changed files with 360 additions and 0 deletions

21
build.gradle.kts Normal file
View File

@ -0,0 +1,21 @@
plugins {
kotlin("jvm") version "2.2.0"
}
group = "be.topl.phoenix-intellij"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}