Maven Custom Archetype from Eclipse Project
Learn to create maven custom archetypes which helps in creating a specific type of project structure which is not available in any standard maven archetype. The post Maven Custom Archetype from Eclipse...
View ArticleMaven multi-module project in eclipse
Learn how to create multi module maven project in eclipse IDE. In this maven tutorial, we will learn to create nested maven projects in eclipse. 1. Create multi module maven project Let’s create a...
View ArticleMulti-module maven project – Console
Learn how to create multi-module maven project from console IDE. In this maven tutorial, we will learn to create nested maven projects maven cli commands. The post Multi-module maven project – Console...
View ArticleSpring boot multi-module maven project example
Learn to create spring boot project having multiple modules. The parent project will work as container for base maven configurations. The child modules will be actual spring boot projects – inheriting...
View ArticleMaven – Remove all corrupt jars / dependencies
Learn to rebuild local repository by deleting all corrupt jars from repository and fix missing maven dependencies problem or force update a maven project. The post Maven – Remove all corrupt jars /...
View ArticleMaven BOM – Bill Of Materials Dependency
If you have worked on maven in your projects for dependency management, then you must have faced one problem at least once or may be more than that. And the problem is version mismatch. It generally...
View ArticleMaven – Create java source folders
This is very strange problem but this is fact that when you create a maven web application using “-DarchetypeArtifactId=maven-archetype-webapp” then no java source folder is created. Rather a resources...
View ArticleHow to Run JUnit Unit Tests with Maven
Learn to run JUnit tests using Maven Surefire Plugin. We will learn to run a single test, run only selected tests or run all the tests in the project. The post How to Run JUnit Unit Tests with Maven...
View ArticleMaven Tutorials
Maven is a build tool based on POM and is generally used for Java projects to automatically download the project dependencies in build time. The post Maven Tutorials appeared first on HowToDoInJava.
View Article[Solved] Maven – Fatal error compiling: invalid target release
Learn to fix Maven invalid target release error which indicates that Java versions used in Maven and in the application are not compatible. The post [Solved] Maven – Fatal error compiling: invalid...
View ArticleSetting Java Version used by Maven Compiler
Learn to configure the Java compiler version in a Maven project and a Spring boot application using Maven as a build tool. The post Setting Java Version used by Maven Compiler appeared first on...
View Article