Maven Tutorials

Maven is a tool which can be used for building and managing of any Java based project. This tool is developed by Apache. Here you will find different Articles to learn different aspect of Maven.


Maven Introduction

Apache Maven is a project management tool which can be used for building and managing of any Java based project.It is designed to take much of the hard work out of the build process.Maven provides new concept of a project object model (POM) file to manage project's build, dependency and documentation more >>


What is Maven Repository

To resolve the dependency of a project Maven requires multiple JARs (Framework specific Jars or Project Jars), plugins or any other project specific artifacts are stored and can be used by Maven easily. Maven will look for these Jars in certain locations more >>



Maven pom.xml Overview

POM stands for "Project Object Model". It is an XML representation of a Maven project held in a file named pom.xml. The POM contains information about the project and various configuration detail used by Maven to build the project(s). more >>


Creating Java Project Using Maven

Maven uses archetype plugins to create projects. To create a simple java application, we'll use maven-archetype-quickstart plugin. In example below, We'll create a maven based java application project.Open Command Prompt, go the D:\mavenexample directory and execute the following mvn command. more >>


How To Build Project With Maven

To build a Maven based project, open your console, change to your project folder where pom.xml file is placed, and issue this command
mvn package more >>


How to install Maven plugin in eclipse

In this tutorial, we will see how to install m2eclipse plugin which provides Maven integration in Eclipse IDE. m2eclipse provides Apache Maven support in the Eclipse IDE, which will make it easier to edit Maven’s pom.xml, run a build from the IDE and much more. more >>



Creating Web Project Using Maven

In this tutorial, we will show you an easy way to create a Java web application project, using Apache Maven. Also, we will make it support Eclipse IDE more >>



Create a simple Hibernate example with Maven and Eclipse

n this tutorial, we will discuss how to integrate Hibernate, Maven and MYSQL. After completing this tutorial you will learn how to work with Hibernate and insert a record into MySQL database using Hibernate framework more >>


Creating an Eclipse web project using Maven and Struts 1.x

In this article we are going to implement a web application using Struts framework which will have a login screen. Once the user is authenticated, user will be redirected to a welcome page. more >>


Login Application using jsp, servlet,jdbc and Maven

In this article we are going to create a simple web login application using JSP, servlet,maven and mysql database.In this tutorial, Servlet and jsp is used to create a simple login web application to run on the Tomcat server. It also demonstrates how Maven brings in the relevant dependent JAR files like servlet jar and mysql related jars. more >>


Spring HelloWorld Example Using Eclipse And Maven

This tutorial will help you to write your first Hello World Spring program.We used Maven and eclipse to develop this project. We used Spring 3 to implement this project more >>



comments powered by Disqus