生成失败,并显示“无效的目标版本:11”留言。
提交到bitbucket后,管道作业自动启动,但失败,
Full Error Message:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project sms-commons: Fatal error compiling: invalid target release: 11 ->
如何支持Java 11?
image: maven:3.3.9
pipelines:
default:
- step:
caches:
- maven
script: # Modify the commands below to build your repository.
- mvn -B verify # -B batch mode makes Maven less verbose
- mvn clean install
我期待一个成功的构建,但正如我所写的构建作业失败。
4条答案
按热度按时间baubqpgj1#
您需要使用更新版本的maven插件
org.apache.maven.plugins maven-compiler-plugin 3.8.0
您需要一个提供java 11的maven Docker镜像,例如maven:3-jdk-11
lf5gs5x22#
我用途:
ehsaniara/bitbucket-util
作为Docker Image。举例说明:
s6fujrry3#
你需要maven image支持jdk 11,所以像下面这样更新你的“image”值:
nwnhqdif4#
在docker中找到适合maven和jdk版本的maven镜像。另外选择你想要的JDK的发布者对于maven 3.9和JDK 17,我发现:maven:3.9-eclipse-temurin-17-alpine