Files
dashboard/build.gradle
renovate 4a4aa54192
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 1m54s
chore(deps): update plugin org.springframework.boot to v3.5.8
2025-11-20 16:02:04 +00:00

40 lines
880 B
Groovy

plugins {
id 'java'
id 'org.springframework.boot' version '3.5.8'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'de.wundenbergs'
version = '0.0.1-SNAPSHOT'
description = 'Simple Dashboard'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
developmentOnly("org.springframework.boot:spring-boot-devtools")
}
tasks.named('test') {
useJUnitPlatform()
}