Skip to content

Commit 9cfe528

Browse files
1.0.0-rc4
1 parent 4569886 commit 9cfe528

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@
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 a CorDapp in it's own right, it is partitioned into contract, workflow and integration layers for simplicity.
8+
9+
10+

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ buildscript {
1212

1313
junit_group = 'org.junit.jupiter'
1414
junit_version = '5.3.1'
15+
16+
cordapp_platform_version = 8
17+
cordapp_signing_enabled = true
18+
cordapp_contract_name = 'ONIXLabs Corda Core Contract'
19+
cordapp_workflow_name = 'ONIXLabs Corda Core Workflow'
20+
cordapp_vendor_name = 'ONIXLabs'
21+
cordapp_license = 'Apache License, Version 2.0'
22+
cordapp_version_id = 1
1523
}
1624

1725
repositories {

onixlabs-corda-core-contract/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
cordapp {
2+
targetPlatformVersion cordapp_platform_version
3+
minimumPlatformVersion cordapp_platform_version
4+
contract {
5+
name cordapp_contract_name
6+
vendor cordapp_vendor_name
7+
licence cordapp_license
8+
versionId cordapp_version_id
9+
}
10+
signing {
11+
enabled = cordapp_signing_enabled
12+
}
13+
}
14+
115
dependencies {
216
// Kotlin Dependencies
317
implementation "$kotlin_group:kotlin-stdlib-jdk8:$kotlin_version"

onixlabs-corda-core-workflow/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
cordapp {
2+
targetPlatformVersion cordapp_platform_version
3+
minimumPlatformVersion cordapp_platform_version
4+
workflow {
5+
name cordapp_contract_name
6+
vendor cordapp_vendor_name
7+
licence cordapp_license
8+
versionId cordapp_version_id
9+
}
10+
signing {
11+
enabled = cordapp_signing_enabled
12+
}
13+
}
14+
115
dependencies {
216
// Kotlin Dependencies
317
implementation "$kotlin_group:kotlin-stdlib-jdk8:$kotlin_version"

0 commit comments

Comments
 (0)