Browse Source

Fix archive signing

pull/898/merge json-path-2.8.0
Kalle Stenflo 1 year ago
parent
commit
8a0d2fd594
  1. 2
      README.md
  2. 5
      build.gradle

2
README.md

@ -11,7 +11,7 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http
News
----
22 Mar 2023 - Released JsonPath 2.8.0
26 Mar 2023 - Released JsonPath 2.8.0
30 Jan 2022 - Released JsonPath 2.7.0

5
build.gradle

@ -87,9 +87,8 @@ subprojects {
}
signing {
sign configurations.archives
//sign publishing.publications.mavenJava
required { !snapshotVersion && gradle.taskGraph.hasTask("publish") } // uploadArchives is replaced by publish
sign publishing.publications
required { !snapshotVersion && gradle.taskGraph.hasTask("publish") }
}
javadoc {

Loading…
Cancel
Save