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.
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>
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 >>