Skip to content

Commit ae5c929

Browse files
committed
build: adapt descriptions of subprojects
1 parent 1899712 commit ae5c929

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

base/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ plugins {
88
}
99

1010
val artifactId by extra("testfiles")
11+
val description by extra("Manage test files and directories neatly!")
1112

1213
dependencies {
1314
val spekVersion = "2.0.15"

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ subprojects {
102102

103103
pom {
104104
name.set("$groupId:$artifactId")
105-
description.set("Easily manage test files and directories when testing with Spek!")
105+
if (extra.has("description")) description.set(extra["description"] as String)
106106
inceptionYear.set("2020")
107107
url.set("https://github.com/$githubRepository")
108108
ciManagement {

kotest/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
}
1010

1111
val artifactId by extra("kotest-files")
12+
val description by extra("Manage test files and directories neatly when testing with Kotest!")
1213

1314
dependencies {
1415
val kotestVersion = "4.3.2"

spek/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
}
1010

1111
val artifactId by extra("spek-testfiles")
12+
val description by extra("Manage test files and directories neatly when testing with Spek!")
1213

1314
dependencies {
1415
val spekVersion = "2.0.15"

0 commit comments

Comments
 (0)