my-solutions/advent-of-code/2023/day_01/build.gradle.kts
Ivan Reshetnikov fa27aa2405
Refactor day 1 of AoC 2023
- The solution is in a separate project.
- Separation of logic and file reading.
- Removed all the garbage from Gradle.
2024-12-19 13:25:09 +05:00

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()
}