plugins { id 'java' id 'org.springframework.boot' version '4.0.1' id 'io.spring.dependency-management' version '1.1.7' } group = 'com.danielbohry' java { sourceCompatibility = '25' } 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-api:0.12.6' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.6' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6' implementation 'com.google.guava:guava:33.4.0-jre' implementation 'org.apache.commons:commons-lang3:3.19.0' implementation 'commons-collections:commons-collections:3.2.2' implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.2' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' testImplementation 'org.springframework.boot:spring-boot-test-autoconfigure' testImplementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.mockito:mockito-core:5.14.2' } tasks.named('test') { useJUnitPlatform() }