22 lines
442 B
Kotlin
22 lines
442 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "de.srsoftware"
|
|
version = "unspecified"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("de.srsoftware:tools.mime:1.1.2")
|
|
implementation("org.json:json:20240303")
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation("org.xerial:sqlite-jdbc:3.49.0.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |