51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("org.springframework.boot") version "3.2.1"
|
|
id("io.spring.dependency-management") version "1.1.4"
|
|
kotlin("jvm") version "1.9.21"
|
|
kotlin("plugin.spring") version "1.9.21"
|
|
kotlin("plugin.jpa") version "1.9.21"
|
|
}
|
|
|
|
group = "com.example"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
// For DB
|
|
implementation("io.quarkus:quarkus-hibernate-orm:3.6.4")
|
|
implementation("io.quarkus:quarkus-hibernate-orm-panache-kotlin:3.6.4")
|
|
implementation("io.quarkus:quarkus-hibernate-validator:3.6.4")
|
|
implementation("io.quarkiverse.jdbc:quarkus-jdbc-sqlite:3.0.7")
|
|
|
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|
|
|
|
configurations.all {
|
|
exclude(group = "org.jboss.logmanager", module = "jboss-logmanager")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
freeCompilerArgs += "-Xjsr305=strict"
|
|
jvmTarget = "21"
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|