Build file '/Users/atsu/Downloads/container--ktor-test-master/build.gradle' line: 13
A problem occurred evaluating root project 'ktor-test'.
> java.lang.ExceptionInInitializerError (no error message)
* Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.
IDEが示す対象箇所は以下
kotlin_version = '1.2.61'
apply plugin: 'kotlin' ←ココ
stackoverflowで解決策が明示されてました。
Solved this issue by setting the latest Kotlin version (1.3.72) in build.gradle file.
ということで、Kotlinのバージョンを上げたら解決しました。
kotlin_version = '1.2.61'
↓
kotlin_version = '1.5.20'
バージョンは時々見直しておく必要がありますね。