Skip to content

Commit

Permalink
Fixed JAR signing
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed Feb 9, 2024
1 parent 8a6c015 commit 5a69773
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Changed data level errors from an exception to a validation error reported on the item.
- Fixed behavior of the reading SAS macro when it deals with fields that have a value too long in the XML file.
- Added nw 'specs' parameter to allow writing a provided specifications version instead of the default library one.
- Added new 'specs' parameter to allow writing a provided specifications version instead of the default library one.

**Version 10.1**

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ publishing {
signing {
required { !project.version.endsWith('-SNAPSHOT') }

String signingKey = project.findProperty('signing.armored.key') ?: ''
String signingPassword = project.findProperty('signing.armored.password') ?: ''
String signingKey = project.findProperty('signingKey') ?: ''
String signingPassword = project.findProperty('signingPassword') ?: ''

useInMemoryPgpKeys(signingKey, signingPassword)

Expand Down

0 comments on commit 5a69773

Please sign in to comment.