Author: Keerthi Kumar
-
Maven Tutorials – Maven Repository
Previous – Chapter 3 Maven Tutorial – Chapter 4 What is Maven Repository? For maven to download the required artifacts of the build and dependencies (jar files) and other plugins which are configured as part of any project, there should be a common place where all such artifacts are placed. This common shared area is…
-
Maven Tutorials – POM in Maven
Previous – Chapter 2 Maven Tutorial – Chapter 3 What is POM? The easiest way to describe a POM in a maven project is, it is nothing but the core element of any maven project. Basically any maven project consists of one configurable file called pom.xml, which stands for the abbreviation “Project Object Model”. This…
-
Tips on JUnit
JUnit JUnit in java is nothing but a programming technique or testing framework to perform the unit test for the code written in a new class or a new method added to an existing class in java. JUnit plays a vital role in the test driven development process of an application. The basic motto behind…
-
Maven Tutorial – Setting up the Maven Environment
Previous – Chapter 1 Maven Tutorial – Chapter 2 Maven is one of the handy tool which can be set up quickly and can be made it ready for any java projects within a max of 10 minutes. Also, the maven downloadable package is also very light weight. Follow the below mentioned steps in order…
-
Maven Tutorial – Introduction to Maven
Maven Tutorial Chapter1 Next – Chapter 2 Introduction to Maven Maven is a simple build automation tool which is basically used with java projects. Maven is also defined as a comprehensive project management tool. It aims to provide the developers a complete and detailed build life cycle framework of an application. Maven also ease up the task…