JMH を使用してベンチマークを作成しましたが、ビルド時に次のようなコンパイル エラーが発生しました。
lambda expressions are not supported in -source 1.6
[ERROR] (use -source 8 or higher to enable lambda expressions)
JAVA_HOME
jdk1.8_40に設定されています。pom.xml
jmh ソース フォルダー jmh-core 内のターゲットとソースを変更しようとしました。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
しかし、私はまだ同じエラーが発生します