| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.1.3'
- id 'io.spring.dependency-management' version '1.1.3'
- }
- group = 'com.danielbohry'
- java {
- sourceCompatibility = '17'
- }
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- 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-security'
- implementation 'org.springframework.boot:spring-boot-starter-actuator'
- implementation 'io.jsonwebtoken:jjwt:0.9.1'
- implementation 'com.google.guava:guava:31.1-jre'
- implementation 'org.springdoc:springdoc-openapi-ui:1.6.11'
- implementation 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
- compileOnly 'org.projectlombok:lombok'
- annotationProcessor 'org.projectlombok:lombok'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|