Demo now imports lib

Both modules working
This commit is contained in:
Julien Lengrand-Lambert
2025-05-16 14:24:38 +02:00
parent ccd3a6f3a6
commit 57e771ffb0

View File

@@ -1,3 +1,5 @@
import org.gradle.kotlin.dsl.implementation
plugins {
kotlin("jvm") version "2.1.21"
application
@@ -11,6 +13,8 @@ repositories {
}
dependencies {
implementation("org.jsoup:jsoup:1.20.1")
implementation(project(":opengraphkt"))
testImplementation(kotlin("test"))
}