plugins { // Applied per-subproject; declared here (apply false) so versions are shared. kotlin("jvm") version "2.0.20" apply false kotlin("plugin.spring") version "2.0.20" apply false kotlin("plugin.jpa") version "2.0.20" apply false id("org.springframework.boot") version "3.3.4" apply false id("io.spring.dependency-management") version "1.1.6" apply false } allprojects { group = "kr.or.bok.rtgs" version = "0.1.0" repositories { mavenCentral() } } subprojects { apply(plugin = "org.jetbrains.kotlin.jvm") // All modules target Java 21 bytecode (cloud parity: Temurin 21). the().toolchain { languageVersion.set(JavaLanguageVersion.of(21)) } tasks.withType().configureEach { compilerOptions { freeCompilerArgs.add("-Xjsr305=strict") jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21) } } tasks.withType().configureEach { useJUnitPlatform() } }