File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed
Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ plugins {
88}
99
1010val artifactId by extra(" testfiles" )
11+ val description by extra(" Manage test files and directories neatly!" )
1112
1213dependencies {
1314 val spekVersion = " 2.0.15"
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99}
1010
1111val artifactId by extra(" kotest-files" )
12+ val description by extra(" Manage test files and directories neatly when testing with Kotest!" )
1213
1314dependencies {
1415 val kotestVersion = " 4.3.2"
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99}
1010
1111val artifactId by extra(" spek-testfiles" )
12+ val description by extra(" Manage test files and directories neatly when testing with Spek!" )
1213
1314dependencies {
1415 val spekVersion = " 2.0.15"
You can’t perform that action at this time.
0 commit comments