Ivan Reshetnikov
fa27aa2405
- The solution is in a separate project. - Separation of logic and file reading. - Removed all the garbage from Gradle.
18 lines
223 B
Text
18 lines
223 B
Text
plugins {
|
|
kotlin("jvm") version "2.0.21"
|
|
}
|
|
|
|
group = "space.comfycamp"
|
|
version = "1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|