appengine-maven-plugin:1.3.1 run failed non zero exit

可紊 提交于 2019-12-02 07:45:44

As indicated here:

<properties>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

This is Java 7, so, if you want to run this with Java 8, you have to change both appearances of 1.7 to 1.8.

The error with appengine-maven-plugin is that you are trying to use Java 7, while saying to use Java 8 in the command.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!