mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 19:44:21 +01:00
22 lines
383 B
Plaintext
22 lines
383 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "org.github.seonwkim"
|
|
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()
|
|
}
|