Java 1.5 で scala-maven-plugin:3.1.0 を使用しようとしています。しかし、私の Maven ビルドは非互換性エラーで失敗しています。
Failed to execute goal net.alchim31.maven:scala-maven-plugin:3.1.0:compile (scala-compile-first) on project proj: Execution scala-compile-first of goal net.alchim31.maven:scala-maven-plugin:3.1.0:compile failed: Unable to load the mojo 'compile' in the plugin 'net.alchim31.maven:scala-maven-plugin:3.1.0' due to an API incompatibility: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Bad version number in .class file
サポートされていないクラス バージョンの警告もあります
WARNING: Error injecting: scala_maven.ScalaCompileMojo
java.lang.UnsupportedClassVersionError: Bad version number in .class file
プラグインのドキュメントには、Java 1.5 が必要であると記載されているため、問題はありません。私は Java 1.5 をローカルで使用しており、Maven ビルドにも使用しています。
問題がどこにあるのかについて何か提案はありますか? 別のバージョンのJavaを使用してクラスをコンパイルできる場所がわからないので、依存関係の1つに互換性がないのではないかと推測していますが、見つけられませんでした。次の依存関係もインポートしています
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.9.0-1</artifactId>
<version>2.0.M5</version>
</dependency>