mirror of
https://github.com/jlengrand/OpenGraphKt.git
synced 2026-03-10 00:21:19 +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
33 lines
568 B
Kotlin
33 lines
568 B
Kotlin
import org.gradle.kotlin.dsl.implementation
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
application
|
|
}
|
|
|
|
group = "fr.lengrand"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.fleeksoft.ksoup:ksoup:0.2.5")
|
|
implementation("com.fleeksoft.ksoup:ksoup-kotlinx:0.2.5")
|
|
implementation("com.fleeksoft.ksoup:ksoup-network:0.2.5")
|
|
implementation(project(":opengraphkt"))
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
application {
|
|
mainClass = "fr.lengrand.opengraphkt.MainKt"
|
|
}
|