mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 20:45:01 +00:00
27 lines
512 B
Kotlin
27 lines
512 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "tech.turso"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("tech.turso:turso: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("tech.turso.Main")
|
|
}
|