Skip to content

Commit 1ad83f2

Browse files
add plugin to log test execution time into console (#811)
1 parent 995e671 commit 1ad83f2

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ plugins {
22
id 'java-library-distribution'
33
alias libs.plugins.ben.manes.versions
44
alias libs.plugins.version.catalog.update
5+
alias libs.plugins.test.logger
56
}
67

78
apply plugin: 'com.github.jk1.dependency-license-report'
9+
apply plugin: 'com.adarshr.test-logger'
810

911
distributions {
1012
published {

dumper/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ plugins {
2929

3030
apply plugin: 'com.github.jk1.dependency-license-report'
3131
apply plugin: "jacoco"
32+
apply plugin: 'com.adarshr.test-logger'
3233

3334
configurations {
3435
sources {

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,5 @@ shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow-plugin"
144144
version-catalog-update = { id = "nl.littlerobots.version-catalog-update", version.ref = "version-catalog-update-plugin" }
145145
jmh = { id = "me.champeau.jmh", version = "0.7.2" }
146146
jmh-report = { id = "io.morethan.jmhreport", version = "0.9.6" }
147-
protobuf = { id = "com.google.protobuf", version = "0.9.4" }
147+
protobuf = { id = "com.google.protobuf", version = "0.9.4" }
148+
test-logger = {id = "com.adarshr.test-logger", version="4.0.0"}

0 commit comments

Comments
 (0)