在eclipse IDE中运行java maven项目时出现编译错误

时间:2018-06-13 01:33:13

标签: java eclipse maven

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。我仍然得到这个错误。需要帮助!!!

2 个答案:

答案 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>