Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions restapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ dependencies {
testImplementation libs.org.springframework.boot.spring.boot.starter.test
}

test {
useJUnitPlatform()
include '**/Test*.class'
testLogging {
events "started", "passed", "failed", "skipped"
}
}

description = 'REST layer'

springBoot {
Expand Down
8 changes: 8 additions & 0 deletions webapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ dependencies {
annotationProcessor libs.org.projectlombok.lombok
}

test {
useJUnitPlatform()
include '**/Test*.class'
testLogging {
events "started", "passed", "failed", "skipped"
}
}

description = 'Web Application'

springBoot {
Expand Down
Loading