Skip to content

Commit 5a69773

Browse files
committed
Fixed JAR signing
1 parent 8a6c015 commit 5a69773

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

99
**Version 10.1**
1010

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ publishing {
190190
signing {
191191
required { !project.version.endsWith('-SNAPSHOT') }
192192

193-
String signingKey = project.findProperty('signing.armored.key') ?: ''
194-
String signingPassword = project.findProperty('signing.armored.password') ?: ''
193+
String signingKey = project.findProperty('signingKey') ?: ''
194+
String signingPassword = project.findProperty('signingPassword') ?: ''
195195

196196
useInMemoryPgpKeys(signingKey, signingPassword)
197197

0 commit comments

Comments
 (0)