Files
dealfinder/build.gradle
2024-12-22 15:12:54 -06:00

24 lines
529 B
Groovy

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()
}