Skip to content

Commit 23bec79

Browse files
1.0.0
1 parent e610b39 commit 23bec79

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

onixlabs-corda-core-contract/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

onixlabs-corda-core-workflow/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)