Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,15 @@ dependencies {
// Lombok dependencies for test classes
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"

// Testing dependencies
testImplementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testImplementation "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"

testImplementation 'org.junit.jupiter:junit-jupiter:5.12.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

}

test {
Expand Down Expand Up @@ -99,6 +100,7 @@ tasks.register('testAll') {

// Ensure the default 'test' task triggers both test tasks
tasks.test {
useJUnitPlatform()
dependsOn(tasks.named('testAll'))
}

Expand Down