Intellij에서 코틀린 프로젝트 빌드시 JVM target 잘못됐다 할 때

Posted by honeymon on March 08, 2018
1
Kotlin: Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option

상황

MSA 트레이닝을 위한 프로젝트(https://github.com/ihoneymon/msa-training)를 만들고 spring-config-server를 코틀린(kotlin)으로 언어를 지정하고 빌드를 마치니 다음과 같은 에러 메시지가 애플리케이션 컴파일 중에 뜬다.

1
Kotlin: Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option

이와 관련된 내용을 다음에서 찾았다.

정리

  • 코틀린 컴파일러에서 사용하는 JVM 버전을 1.6 에서 1.8로 변경하면 된다. Intellij > Settings > Kotlin Compiler

Comments