Home > Software design >  Jenkins throws an exception: build step 'invoke top-level maven targets' marked build as f
Jenkins throws an exception: build step 'invoke top-level maven targets' marked build as f

Time:08-02

Jenkins throws the following error:

[WARNING] The requested profile "singleflow" could not be activated because it does not exist.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project factor-esb-autotest: Fatal error compiling: invalid target release: 10 -> [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
build step 'invoke top-level maven targets' marked build as failure

My POM enter image description here

CodePudding user response:

There must be a configuration for maven-compiler-plugin (<release>10</release>) or a property like <maven.compiler.release>10</maven.compiler.release>

The commented upgrade of JUnit is unrelated to the problem.

Apart from that such information that you have update pom should be part of the question up-front

  • Related