advent-of-code/build.gradle.kts

25 lines
372 B
Plaintext
Raw Permalink Normal View History

2023-11-17 10:37:33 +01:00
plugins {
2024-12-22 07:28:57 +01:00
kotlin("jvm") version "2.1.0"
2023-11-17 10:37:33 +01:00
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.github.kittinunf.fuel:fuel:3.0.0-alpha1")
2024-12-22 07:28:57 +01:00
implementation("com.mohamedrejeb.ksoup:ksoup-html:0.4.0")
}
2023-11-17 10:37:33 +01:00
tasks {
sourceSets {
main {
java.srcDirs("src")
}
}
wrapper {
2024-12-22 07:28:57 +01:00
gradleVersion = "8.12"
2023-11-17 10:37:33 +01:00
}
}