-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (30 loc) · 864 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
plugins {
kotlin("jvm") version "2.1.0" // Use the latest Kotlin version
application
}
group = "com.s13g.aoc"
version = "23"
application {
mainClass.set("com.s13g.aoc.AdventOfCode")
}
repositories {
mavenCentral()
}
//tasks.register<Copy>("CopyAocInputs") {
// from("../data/aoc") // Adjust the path to your data folder
// into("${layout.projectDirectory}/src/main/resources/") // Destination inside the build folder
//}
dependencies {
implementation(kotlin("stdlib"))
implementation("com.google.guava:guava:27.1-jre")
implementation("io.ktor:ktor-client-core:3.0.1")
implementation("io.ktor:ktor-client-cio:3.0.1")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0") // Latest JUnit version
}
tasks.test {
useJUnitPlatform()
}
//tasks.processResources {
// dependsOn("CopyAocInputs")
//}