0
votes

I have cloned the Corda Example with Version 3.0. (https://github.com/corda/cordapp-example.git)

While deploying the code through Terminal with with the command "gradlew deployNodes" i am getting following error

FAILURE: Build failed with an exception.

  • What went wrong: Execution failed for task ':kotlin-source:compileKotlin'.

    Internal compiler error. See log for more details

Any clue?

1
Some compilation error. Check the *client.kt classes. they may have some errors. Intellij may not show all errors in one go. ;) - CourseTriangle
Can you check the logs and update the question with the error message? - Joel
Joel - where can see the log? - Saiprasad
here is the link of the scan scans.gradle.com/s/a4jjfashoxrq6/… - Saiprasad
I managed to fixed this issue by upgrading my JDK to 162 version. - Saiprasad

1 Answers

1
votes

This issue was caused by using an unsupported JDK version.

The earliest supported version at the time of writing is Oracle JDK 8u131. You can see the supported JDK versions here: https://docs.corda.net/getting-set-up.html#software-requirements.