plugins { id 'org.springframework.boot' version '3.4.1' id 'java' } apply plugin: 'io.spring.dependency-management' group = 'com.homelabpulse' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } test { useJUnitPlatform() }