Skip to content

Commit

Permalink
build: adapt descriptions of subprojects
Browse files Browse the repository at this point in the history
  • Loading branch information
jGleitz committed Jan 4, 2021
1 parent 1899712 commit ae5c929
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ plugins {
}

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

dependencies {
val spekVersion = "2.0.15"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ subprojects {

pom {
name.set("$groupId:$artifactId")
description.set("Easily manage test files and directories when testing with Spek!")
if (extra.has("description")) description.set(extra["description"] as String)
inceptionYear.set("2020")
url.set("https://github.com/$githubRepository")
ciManagement {
Expand Down
1 change: 1 addition & 0 deletions kotest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ plugins {
}

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

dependencies {
val kotestVersion = "4.3.2"
Expand Down
1 change: 1 addition & 0 deletions spek/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ plugins {
}

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

dependencies {
val spekVersion = "2.0.15"
Expand Down

0 comments on commit ae5c929

Please sign in to comment.