plugins { id("java") kotlin("jvm") kotlin("plugin.spring") version "1.5.31" id("org.springframework.boot") version "2.5.5" id("io.spring.dependency-management") version "1.0.11.RELEASE" } group = "no.iktdev.mediaprocessing.apps" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { implementation(kotlin("stdlib-jdk8")) implementation("org.springframework.boot:spring-boot-starter-web:3.0.4") implementation("org.springframework.kafka:spring-kafka:2.8.5") implementation(project(mapOf("path" to ":shared:kafka"))) implementation(project(mapOf("path" to ":shared"))) implementation("io.github.microutils:kotlin-logging-jvm:2.0.11") implementation("com.google.code.gson:gson:2.9.0") testImplementation(platform("org.junit:junit-bom:5.9.1")) testImplementation("org.junit.jupiter:junit-jupiter") } tasks.test { useJUnitPlatform() }