Files
OpenGraphKt/scrape-test/build.gradle.kts
renovate[bot] 9d94d22a5e Update dependency org.junit:junit-bom to v5.13.1 (#25)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-08 14:17:02 +02:00

28 lines
530 B
Kotlin

plugins {
id("java")
kotlin("jvm")
}
group = "fr.lengrand"
version = "unspecified"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.13.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation(kotlin("stdlib-jdk8"))
implementation(project(":opengraphkt"))
implementation("io.ktor:ktor-client-core:3.1.3")
implementation("io.ktor:ktor-client-cio:3.1.3")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(23)
}