Reputation: 33
I amtrying to build a corda demo application using corda os 4.5. Is there any template that uses corda 4.5. The template that I cloned, https://github.com/corda/cordapp-template-java, uses corda 4.4. What would I have to do in order to upgrade to corda 4.5.
Upvotes: 0
Views: 99
Reputation: 2548
You can go to constants.properties
file inside your cloned template, then change cordaVersion
and cordaCoreVersion
from 4.4 to 4.5.
If Gradle doesn't ask automatically to download the new versions; you can go (inside Intellij) to View-> Tool Windows -> Gradle then click on the refresh icon in the Gradle window so it refreshes your project with the new versions.
Upvotes: 1