compilation failure for spring boot application with java 9 and maven

前端 未结 3 1054
醉话见心
醉话见心 2020-12-18 11:24

I am trying to build spring-boot application that uses java-9 and would be deployed to heroku. As a build tool I use maven

3条回答
  •  余生分开走
    2020-12-18 12:14

    maven-compiler-plugin 3.6.0 is based on the first signature of module-info.class, which has changed a couple of times. It is not compatible with current Java 9 signature. You should use 3.6.2 when using most recent versions of JDK 9.

提交回复
热议问题