Maven error – invalid target release: 17
We upgraded the project from Java 11 to Java 17, and mvn test hits the Fatal error compiling: error: invalid target release: 17 . This article will show how to fix this Maven error.
Favourite tutorials for developers
We upgraded the project from Java 11 to Java 17, and mvn test hits the Fatal error compiling: error: invalid target release: 17 . This article will show how to fix this Maven error.
Maven compiles and hits the following fatal error messages: Fatal error compiling: error: invalid target release: 1.11 . The article will show you how to fix this error
In a previous article, we have discussed how to create a simple maven project in eclipse. In this article, we will show you how to create a web project or application using maven in Eclipse IDE. Let me list out what are tools and technologies that I have used to create a web project or application using maven in Eclipse IDE.
In this tutorial, we create a simple web application with the Maven Archetype plugin. We’ll run this web application in a Servlet container named jetty or tomcat. Note that we are creating a Maven web application from the command line using Maven.
In this tutorial, we learn how to create a simple standalone Java maven project using the Maven Archetype plugin. Note that we are creating a simple Maven project from the command line using Maven. Note that this is not a web application.
In this article, we will show you how to create a simple maven project in Eclipse IDE.
It all happens when I was trying to build a springboot application by ./mvnw clean install. When I first run the install command, it runs into following problem: [ERROR] Source option 5 is no longer supported. Use 6 or later and [ERROR] Target option 1.5 is no longer supported. Use 1.6 or later.
In this article, we will show you few Maven profile examples to pass different parameters (server or database parameters) for different environments (dev, test or prod). Tested with Maven 3.5.3
In this tutorial, we will show you how to use Maven Shade Plugin to create a Jar together with its dependency Jars into a single executable Jar file, so called fat Jar or uber Jar.
In this tutorial, we will show you how to create a fat/uber jar with Maven Assembly Plugin. Which means create a Jar together with its dependency Jars into a single executable Jar file.