exposed-spring-boot-starter/build.gradle.kts (44 lines of code) (raw):
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm")
alias(libs.plugins.dokka)
}
repositories {
mavenCentral()
}
kotlin {
jvmToolchain(17)
}
dependencies {
api(project(":exposed-core"))
api(project(":exposed-dao"))
api(project(":spring-transaction"))
api(libs.spring.boot.starter.jdbc)
api(libs.spring.boot.autoconfigure)
compileOnly(libs.spring.boot.configuration.processor)
testImplementation(libs.spring.boot.starter.test)
// put in testImplementation so no hard dependency for those using the starter
testImplementation(libs.spring.boot.starter.webflux)
testImplementation(libs.h2)
testImplementation(project(":exposed-jdbc"))
testRuntimeOnly(libs.junit.platform.launcher)
testImplementation(libs.junit6)
}
tasks.withType<KotlinCompile>().configureEach {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}
tasks.withType<Test>().configureEach {
if (JavaVersion.VERSION_1_8 > JavaVersion.current()) {
jvmArgs = listOf("-XX:MaxPermSize=256m")
}
testLogging {
events.addAll(listOf(TestLogEvent.PASSED, TestLogEvent.FAILED, TestLogEvent.SKIPPED))
showStandardStreams = true
exceptionFormat = TestExceptionFormat.FULL
}
useJUnitPlatform()
}