英文:
Corda 4.5 Template Project
问题
我正在尝试使用 Corda OS 4.5 构建 Corda 演示应用程序。是否有使用 Corda 4.5 的模板?我克隆的模板,https://github.com/corda/cordapp-template-java,使用的是 Corda 4.4。为了升级到 Corda 4.5,我需要做哪些步骤?
英文:
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.
答案1
得分: 1
你可以进入你克隆的模板中的 constants.properties
文件,然后将 cordaVersion
和 cordaCoreVersion
从 4.4 更改为 4.5。
如果 Gradle 没有自动要求下载新版本,你可以在 IntelliJ 中转到 View -> Tool Windows -> Gradle,然后点击 Gradle 窗口中的刷新图标,以使用新版本刷新你的项目。
英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论