| 123456789101112131415161718192021222324252627282930313233 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '4.0.1'
- id 'io.spring.dependency-management' version '1.1.7'
- }
- group = 'com.lhamacorp'
- java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(25)
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework.boot:spring-boot-starter-actuator'
- implementation 'org.springframework.boot:spring-boot-starter-cache'
- implementation 'org.springframework.boot:spring-boot-starter-mail'
- implementation 'com.github.ben-manes.caffeine:caffeine'
- testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|