对于使用devops管道在Bluemix上构建的应用程序,我收到以下错误。构建命令是
mvn -B package
并且相同的命令在我的本地服务器上运行时没有问题。
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compilerplugin:3.1:compile (default-compile) on project api: Fatal error compiling: invalid target release: 1.8 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
我错过了管道中的配置步骤吗?为何选择三角洲?
两个不错的功能:我想命名自定义阶段。如果删除红色/绿色阶段,我想创建一个新的模板作为模板。
答案 0 :(得分:0)
在构建脚本中尝试将JAVA_HOME设置为Java8并将其添加到路径中。 Java7默认存在。
export JAVA_HOME=$JAVA8_HOME
export PATH="$JAVA_HOME/bin:$PATH"