diff --git a/app/build.gradle b/app/build.gradle index 62f3234..7665c1a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,12 +12,19 @@ configurations { dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-web' + 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.mockito:mockito-junit-jupiter:4.2.0' } tasks.named('bootBuildImage') { builder = 'paketobuildpacks/builder-jammy-base:latest' +} + +tasks.named('test') { + useJUnitPlatform() } \ No newline at end of file