27 lines
521 B
Plaintext
27 lines
521 B
Plaintext
plugins {
|
|
id("java")
|
|
kotlin("jvm")
|
|
}
|
|
|
|
group = "no.iktdev.mediaprocessing.shared"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(project(mapOf("path" to ":shared:eventi")))
|
|
implementation("com.google.code.gson:gson:2.8.9")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter:2.7.0")
|
|
|
|
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |