How to Create a Web Project Using Maven in Eclipse
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…
Favourite tutorials for developers
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…
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…
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…
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: Source option…
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…
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…
In this tutorial, we will show you how to use Maven build tool, One-JAR plugin to create a single Jar together with its dependency Jars into a single executable Jar…
This example shows you how to use Maven to exclude the log4j.properties file from your Jar file. Please, DO NOT include the log4j.properties into the final Jar file, it will…