Reputation: 11
How to create multiple flows for different nodes with different jar files in Corda platform?
Upvotes: 1
Views: 61
Reputation: 23140
The Oracle Example here is a good example. You need to do several things:
base
, service
and client
. Make sure you include the modules in the settings.gradle
filebuild.gradle
filedeployNodes
to create your nodes, selectively add the modules as CorDapps on your nodesgradlew jar
task from the root of your project to create the individual CorDapps in the build/libs
foldercordapps
folder of the nodes you want them to be installed onUpvotes: 1