mirror of
https://github.com/jlengrand/OpenGraphKt.git
synced 2026-03-10 08:31:23 +00:00
Creates repo
This commit is contained in:
35
build.gradle.kts
Normal file
35
build.gradle.kts
Normal file
@@ -0,0 +1,35 @@
|
||||
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-okio:$ksoupVersion")
|
||||
// implementation("com.fleeksoft.ksoup:ksoup-network:$ksoupVersion")
|
||||
implementation("org.jsoup:jsoup:1.20.1")
|
||||
|
||||
testImplementation(kotlin("test"))
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(23)
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "nl.lengrand.MainKt"
|
||||
}
|
||||
Reference in New Issue
Block a user