Maven Build Phases with Example
Maven Build Phases with Example: As we have already discussed some of the most commonly and frequently used Maven build phases (Here). Now let us see an example of executing…
Learn Together
Maven Build Phases with Example: As we have already discussed some of the most commonly and frequently used Maven build phases (Here). Now let us see an example of executing…
Spring Architecture – An Introduction: Spring is a lightweight framework used to build java applications. In this article let us see the Spring Architecture in detail. There are seven modules…
Maven – Profiles – Profile based Dependencies: One of the major advantage of maven is creating profile based dependencies. Instead of creating separate POM.xml, we can create a profile and…
Maven – Configuring Dependencies: When we create a maven project, By default pom.xml will be generated. pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>MavenTest</groupId> <artifactId>Profile</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging>…
Maven Overview – Core Concepts What is Maven? Maven is a Build tool used primarily for Java Projects. How Maven helps us? Maven helps us with Builds, dependencies, reporting, documentation and…