| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.4.3'
- id 'io.spring.dependency-management' version '1.1.4'
- }
- group = 'com.danielbohry'
- version = '0.1'
- java {
- sourceCompatibility = '21'
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
- implementation 'org.springframework.boot:spring-boot-starter-cache'
- implementation 'org.springframework.boot:spring-boot-starter-actuator'
- implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.0.2'
- implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
- implementation 'com.github.ben-manes.caffeine:caffeine'
- compileOnly 'org.projectlombok:lombok:1.18.30'
- annotationProcessor 'org.projectlombok:lombok:1.18.30'
-
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- dependencyManagement {
- imports {
- mavenBom "org.springframework.boot:spring-boot-dependencies:3.0.5"
- }
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|