Files
turso/bindings/java/example/build.gradle.kts
2025-02-06 20:54:13 +09:00

28 lines
554 B
Plaintext

plugins {
id("java")
}
group = "org.github.tursodatabase"
version = "1.0-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation("org.github.tursodatabase:limbo:0.0.1-SNAPSHOT")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}
tasks.register<JavaExec>("run") {
group = "application"
classpath = sourceSets["main"].runtimeClasspath
mainClass.set("org.github.tursodatabase.Main")
}