C:\ Users \ SAYAN \ Desktop \ block-ch \ project \ khs-blockchain-java-example-master \ src \ main \ java \ simple \ chain \ Block.java:[51,29] error:lambda -source 1.5
中不支持表达式我已经安装了jdk 1.8。我仍然得到这个错误。需要帮助!!!
答案 0 :(得分:1)
我做到了。这将有效。
In the pom.xml we need to add
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
答案 1 :(得分:0)
或在下面的pom.xml中使用
<java.version>1.8</java.version>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>