mirror of
https://github.com/jlengrand/OpenGraphKt.git
synced 2026-03-10 08:31:23 +00:00
* Moving back to Java 17 compatibility. I'll change demo-remote a little later, because otherwise I have to break the project for some time. * Prepares version 0.1.3
28 lines
530 B
Kotlin
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.14.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
|
|
implementation(project(":opengraphkt"))
|
|
implementation("io.ktor:ktor-client-core:3.3.1")
|
|
implementation("io.ktor:ktor-client-cio:3.3.1")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |