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" version = "1.0-SNAPSHOT" repositories { mavenCentral() } val exposedVersion = "0.44.0" dependencies { /*Spring boot*/ implementation("org.springframework.boot:spring-boot-starter:2.7.0") implementation("io.github.microutils:kotlin-logging-jvm:2.0.11") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1") implementation("org.jetbrains.kotlin:kotlin-stdlib") implementation("org.jetbrains.exposed:exposed-core:$exposedVersion") implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion") implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion") implementation("org.jetbrains.exposed:exposed-java-time:$exposedVersion") implementation ("mysql:mysql-connector-java:8.0.29") implementation("org.apache.commons:commons-lang3:3.12.0") implementation("com.google.code.gson:gson:2.8.9") testImplementation("org.springframework.boot:spring-boot-starter-test:2.7.0") testImplementation("org.jetbrains.kotlin:kotlin-test") testImplementation(platform("org.junit:junit-bom:5.9.1")) testImplementation("org.junit.jupiter:junit-jupiter") testImplementation("io.mockk:mockk:1.12.0") testImplementation("com.h2database:h2:1.4.200") testImplementation("org.assertj:assertj-core:3.4.1") testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2") testImplementation("io.kotlintest:kotlintest-assertions:3.3.2") testImplementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.0") implementation("org.jetbrains.kotlin:kotlin-reflect") testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.jetbrains.kotlin:kotlin-test-junit5") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(17) }