46 lines
1.4 KiB
Kotlin
46 lines
1.4 KiB
Kotlin
plugins {
|
|
java
|
|
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-resteasy-reactive-jackson")
|
|
implementation("io.quarkus:quarkus-jdbc-h2")
|
|
implementation("io.quarkus:quarkus-hibernate-orm-panache-kotlin")
|
|
implementation("io.quarkus:quarkus-smallrye-openapi")
|
|
implementation("io.quarkus:quarkus-config-yaml")
|
|
implementation("io.quarkus:quarkus-hibernate-reactive-panache-kotlin")
|
|
implementation("io.quarkus:quarkus-smallrye-health")
|
|
implementation("io.quarkus:quarkus-arc")
|
|
implementation("io.quarkus:quarkus-resteasy-reactive")
|
|
testImplementation("io.quarkus:quarkus-junit5")
|
|
testImplementation("io.rest-assured:rest-assured")
|
|
}
|
|
|
|
group = "de.thpeetz.kontor"
|
|
version = "1.0.0-SNAPSHOT"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
systemProperty("java.util.logging.manager", "org.jboss.logmanager.LogManager")
|
|
}
|
|
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
options.compilerArgs.add("-parameters")
|
|
}
|