File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
onixlabs-corda-core-contract
onixlabs-corda-core-workflow Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,17 @@ buildscript {
1414 junit_version = ' 5.3.1'
1515
1616 cordapp_platform_version = 8
17- cordapp_signing_enabled = true
1817 cordapp_contract_name = ' ONIXLabs Corda Core Contract'
1918 cordapp_workflow_name = ' ONIXLabs Corda Core Workflow'
2019 cordapp_vendor_name = ' ONIXLabs'
2120 cordapp_license = ' Apache License, Version 2.0'
2221 cordapp_version_id = 1
22+
23+ cordapp_signing_enabled = true
24+ cordapp_signing_alias = ' cordapp-signer'
25+ cordapp_signing_storetype = ' PKCS12'
26+ cordapp_signing_keystore = getProperty(' jar.sign.keystore' )
27+ cordapp_signing_password = getProperty(' jar.sign.password' )
2328 }
2429
2530 repositories {
Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ cordapp {
99 }
1010 signing {
1111 enabled = cordapp_signing_enabled
12+ options {
13+ keystore cordapp_signing_keystore
14+ alias cordapp_signing_alias
15+ storepass cordapp_signing_password
16+ keypass cordapp_signing_password
17+ storetype cordapp_signing_storetype
18+ }
1219 }
1320}
1421
Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ cordapp {
99 }
1010 signing {
1111 enabled = cordapp_signing_enabled
12+ options {
13+ keystore cordapp_signing_keystore
14+ alias cordapp_signing_alias
15+ storepass cordapp_signing_password
16+ keypass cordapp_signing_password
17+ storetype cordapp_signing_storetype
18+ }
1219 }
1320}
1421
You can’t perform that action at this time.
0 commit comments