mirror of
https://github.com/jlengrand/ksoup-test-119.git
synced 2026-03-10 08:31:32 +00:00
33 lines
567 B
Kotlin
33 lines
567 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.1.20"
|
|
application
|
|
}
|
|
|
|
group = "nl.lengrand"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
val ksoupVersion = "0.2.3"
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.fleeksoft.ksoup:ksoup:${ksoupVersion}")
|
|
implementation("com.fleeksoft.ksoup:ksoup-kotlinx:${ksoupVersion}")
|
|
implementation("com.fleeksoft.ksoup:ksoup-network:${ksoupVersion}")
|
|
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(23)
|
|
}
|
|
|
|
application {
|
|
mainClass = "nl.lengrand.MainKt"
|
|
} |