Skip to content

Commit

Permalink
MP- 178 fix wrong test path, removed sign artifacts for non-release v…
Browse files Browse the repository at this point in the history
…ersions (if signing key not provided considered as non release version)
  • Loading branch information
sabintrademe committed Mar 31, 2022
1 parent 4b59f6d commit 69a98c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,14 @@ afterEvaluate {
}
}
signing {

if (rootProject.ext["signing.keyId"] && rootProject.ext["signing.key"] && rootProject.ext["signing.password"]) {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications

} else {
sign configurations.archives
}
}
java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SamplePlungeTests {
* the test source set (i.e. /sample/src/test/test-cases/).
*/
@JvmStatic
private val pathToTests = System.getProperty("user.dir") + "/src/test/test-cases"
private val pathToTests = "/src/test/test-cases"

/**
* Declare a static function which returns a collection of Object arrays.
Expand Down

0 comments on commit 69a98c5

Please sign in to comment.