diff --git a/restapp/build.gradle b/restapp/build.gradle index ee57ed0..ec84346 100644 --- a/restapp/build.gradle +++ b/restapp/build.gradle @@ -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 { diff --git a/webapp/build.gradle b/webapp/build.gradle index ee50351..ee504d8 100644 --- a/webapp/build.gradle +++ b/webapp/build.gradle @@ -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 {