MediaProcessing/shared/contract/build.gradle.kts
2023-12-04 00:03:57 +01:00

20 lines
327 B
Plaintext

plugins {
id("java")
kotlin("jvm")
}
group = "no.iktdev.mediaprocessing.shared"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}