Reputation: 504
We are using Corda Version 4 for our application.
We understand that the command gradlew.bat deployNodes creates following jars -
When any change is made in the contract/states/flows code, we had to run the command gradlew.bat deployNodes each time. Due to this the "Corda platform" and "Dependencies" jars always get recreated and consequently increases development time.
Does Corda platform provides alternative way to Only create "CorDapp" jar file and not the remaining ones?
Upvotes: 0
Views: 115
Reputation: 984
You can use following cmd to generate only jar files
./gradlew build
this will generate jar files in you build/lib folder
Upvotes: 1