Skip to content

Commit 1d8e293

Browse files
Merge pull request #1 from onix-labs/1.0.0
1.0.0
2 parents e610b39 + 19e6a47 commit 1d8e293

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

README.md

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

55
ONIXLabs Corda Core provides Corda developers with a suite of APIs to empower development of CorDapps, and also serves as the foundation for all of the ONIXLabs Corda Frameworks and APIs.
66

7-
Whilst the ONIXLabs Corda Core API isn't a CorDapp in it's own right, it is partitioned into contract, workflow and integration layers for simplicity.
7+
Whilst the ONIXLabs Corda Core API isn't intended to be used as a CorDapp (it doesn't have any of it's own states and/or contracts), it's partitioned into contract, workflow and integration layers for simplicty, and is signed with the ONIXLabs key.
8+
9+
810

911

1012

build.gradle

Lines changed: 10 additions & 3 deletions
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 {
@@ -37,7 +42,7 @@ buildscript {
3742
}
3843

3944
group 'io.onixlabs'
40-
version '1.0.0-rc5'
45+
version '1.0.0'
4146

4247
subprojects {
4348
repositories {
@@ -70,7 +75,9 @@ subprojects {
7075
}
7176
}
7277

73-
jar { exclude '**/log4j2*.xml' }
78+
jar {
79+
exclude '**/log4j2*.xml'
80+
}
7481

7582
test {
7683
jvmArgs = ["-ea", "-javaagent:../lib/quasar.jar"]

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)