63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
plugins {
|
|
java
|
|
id("org.springframework.boot") version "3.3.4"
|
|
id("io.spring.dependency-management") version "1.1.6"
|
|
id("checkstyle")
|
|
}
|
|
|
|
tasks.withType<Checkstyle> {
|
|
reports {
|
|
// Disable HTML report
|
|
html.required.set(false)
|
|
|
|
// Disable XML report
|
|
xml.required.set(false)
|
|
}
|
|
}
|
|
|
|
group = "de.szut"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
|
|
// Activate the 'test' profile for Spring during tests
|
|
systemProperty("spring.profiles.active", "test")
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom(configurations.annotationProcessor.get())
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
compileOnly("org.projectlombok:lombok")
|
|
annotationProcessor("org.projectlombok:lombok")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
implementation("org.springframework.boot:spring-boot-starter-security")
|
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.3.4")
|
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.3.4")
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
|
|
testImplementation("com.h2database:h2")
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|