plugins { kotlin("jvm") version "2.2.21" kotlin("plugin.allopen") version "2.2.21" id("io.quarkus") } repositories { mavenCentral() mavenLocal() } val quarkusPlatformGroupId: String by project val quarkusPlatformArtifactId: String by project val quarkusPlatformVersion: String by project dependencies { implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) implementation("io.quarkus:quarkus-container-image-docker") implementation("io.quarkus:quarkus-rest-jackson") implementation("io.quarkus:quarkus-kotlin") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation("io.quarkus:quarkus-arc") implementation("io.quarkus:quarkus-rest") implementation("io.quarkus:quarkus-smallrye-openapi") implementation("io.quarkus:quarkus-smallrye-health") implementation("io.quarkus:quarkus-hibernate-orm-panache-kotlin") implementation("io.quarkus:quarkus-jdbc-h2") implementation("io.quarkus:quarkus-jdbc-postgresql") testImplementation("io.quarkus:quarkus-junit5") testImplementation("io.rest-assured:rest-assured") } group = "de.thpeetz" version = "0.2.0-SNAPSHOT" java { sourceCompatibility = JavaVersion.VERSION_21 targetCompatibility = JavaVersion.VERSION_21 } tasks.withType { systemProperty("java.util.logging.manager", "org.jboss.logmanager.LogManager") jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED") } allOpen { annotation("jakarta.ws.rs.Path") annotation("jakarta.enterprise.context.ApplicationScoped") annotation("jakarta.persistence.Entity") annotation("io.quarkus.test.junit.QuarkusTest") } kotlin { compilerOptions { jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21 javaParameters = true } }