Tagged: Maven

Spring Boot hello world tutorial

Spring Boot is one of the most powerful Java EE frameworks that aims to facilitate the development of new application. It brings all the power of the Spring stack (Spring dependency injection, Spring data...

More

Filter and rename resources with Maven

If you want to filter and copy your project resources to the output directory, the Apache Maven Resources Plugin is the best plugin to perform that. But sometimes you want to filter and rename...

More

3 ways to add local jar to maven project

Introduction You may need to add a custom JAR as a dependency to your Maven project. This tutorial shows 3 ways to do it: Install manually the JAR into your local Maven repository Adding...

More

How to install Maven on Eclipse IDE ?

you can take advantage of the Apache Maven powerful features on your Eclipse IDE by installing the M2Eclipse Plugin. Installing the M2Eclipse Plugin Below steps to follow to install Maven on Eclipse IDE : Open your...

More

No main manifest attribute, in jar

Problem Sometimes you face the following error while runing an executable jar : No main manifest attribute, in “<APP_NAME>.jar” Solution Main-class property is missing on your jars META-INF/MANIFEST.MF. Correct it by adding the following...

More