我使用 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>
但我仍然得到同样的错误