Skip to content

Commit d328426

Browse files
committed
fix for combination Corda 4.4+/Token 1.2, small README update
1 parent a1e14e2 commit d328426

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Tokens/spaceships-javaAPIs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Examples of the new Java APIs will be used throughout and identified as such.
4545

4646
### Flows
4747

48-
There are a few flows that enable this project.
48+
Flows are executed through the `FlowTests` class in the workflows module. They can also be run through the CrashShell.
4949

5050

5151
## Pre-Requisites

Tokens/spaceships-javaAPIs/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
ext {
66
corda_release_group = constants.getProperty("cordaReleaseGroup")
77
corda_core_release_group = constants.getProperty("cordaCoreReleaseGroup")
8-
corda_release_version = '4.3' //constants.getProperty("cordaVersion") - Set 4.3 for MockNetwork
9-
corda_core_release_version = '4.3' //constants.getProperty("cordaCoreVersion") - Set 4.3 for MockNetwork
8+
corda_release_version = constants.getProperty("cordaVersion")
9+
corda_core_release_version = constants.getProperty("cordaCoreVersion")
1010
corda_gradle_plugins_version = constants.getProperty("gradlePluginsVersion")
1111
junit_version = constants.getProperty("junitVersion")
1212
quasar_version = constants.getProperty("quasarVersion")

Tokens/spaceships-javaAPIs/workflows/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ configurations {
3939

4040
dependencies {
4141
testCompile "junit:junit:$junit_version"
42+
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71"
4243

4344
// Corda dependencies.
4445
cordaCompile "$corda_core_release_group:corda-core:$corda_core_release_version"

0 commit comments

Comments
 (0)