| 1234567891011121314151617181920212223242526272829303132333435 |
- 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-data-mongodb'
- 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 'com.github.f4b6a3:ulid-creator:5.2.3'
- implementation 'com.github.ben-manes.caffeine:caffeine'
- testImplementation 'org.springframework.boot:spring-boot-starter-mongodb-test'
- testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|