Skip to content

Commit 8237548

Browse files
committed
chore: adds plugin that improves test results printing
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 567de52 commit 8237548

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

build-logic/java-shared/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ dependencies {
66
implementation(platform("com.codedifferently.studycrm.platform:plugins-platform"))
77
implementation("io.freefair.gradle:lombok-plugin")
88
implementation("com.diffplug.spotless:spotless-plugin-gradle")
9-
}
9+
implementation("com.adarshr:gradle-test-logger-plugin")
10+
}

build-logic/java-shared/src/main/kotlin/com.codedifferently.studycrm.java-shared.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
id("eclipse")
66
id("io.freefair.lombok")
77
id("com.diffplug.spotless")
8+
id("com.adarshr.test-logger")
89
}
910

1011
group = "com.codedifferently.studycrm"

platforms/plugins-platform/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ group = "com.codedifferently.studycrm.platform"
77
val gradlePluginVersion: String by project
88
val lombokVersion: String by project
99
val spotlessPluginVersion: String by project
10+
val testLoggerPluginVersion: String by project
1011

1112
dependencies {
1213
constraints {
1314
api("org.springframework.boot:org.springframework.boot.gradle.plugin:${gradlePluginVersion}")
1415
api("io.freefair.gradle:lombok-plugin:${lombokVersion}")
1516
api("com.diffplug.spotless:spotless-plugin-gradle:${spotlessPluginVersion}")
17+
api("com.adarshr:gradle-test-logger-plugin:${testLoggerPluginVersion}")
1618
}
1719
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
lombokVersion:8.4
22
gradlePluginVersion:2.7.8
3-
spotlessPluginVersion:6.25.0
3+
spotlessPluginVersion:6.25.0
4+
testLoggerPluginVersion:4.0.0

0 commit comments

Comments
 (0)