SlideShare a Scribd company logo
1 of 29
Download to read offline
Hands On With
Maven
Sid Anand (LinkedIn)
July 19, 2012
Overview


Maven is a build system providing
  A standard directory structure
  A standard build lifecycle
  The ability to override default behaviors via plug-ins
  Dependency management
The Maven Directory Structure
The Maven Directory Structure
•   A standard directory structure means that the build tool and the user agree on
    where different types of files can be found.

•   These conventions make coming up to speed on new projects much easier

       •   Java Source Tree goes under /src/main/java

       •   Property files goes under /src/main/resources

       •   Web App files go under /src/main/webapp

           •   /src/main/webapp/WEB-INF

           •   /src/main/webapp/WEB-INF/web.xml

           •   /src/main/webapp/*.jsp

           •   /src/main/webapp/*.html
The Maven Directory Structure
                    Path                   Description

/src/main/java             root of source tree (e.g. com/linkedin/...)


/src/main/resources        Place configuration & property files here


/src/main/scripts          Place scripts here


/src/main/webapp           Place web resources here (e.g. .jsp, .html)

                           root of test source tree (e.g. com/
/src/test/java
                           linkedin/test/...)

                           Place configuration & property files
/src/test/resources
                           needed for tests

                           Generated during build. Contains all build
/target/
                           output
The Default Maven Life Cycle
The Default Maven Life Cycle
•   A default Maven Life Cycle means that you do not need to manually specify build-
    steps and chain them together in each project:

       •   target = “package” dependsOn = “unit-test”

       •   target = “unit-test” dependsOn = “compile”

       •   target = “compile” dependsOn = “validate”

•   If you have worked with other build-tools (e.g. Make, Scala Build Tool, Ant, etc...),
    you will find that you are copying build-specs and specifying this boiler-plate logic
    often

•   Maven specifies a set of standard build steps and also automatically chains them
    together

•   This is part of the Maven framework and is not the responsibility of the user to
    define
The Default Maven Life Cycle
                Build Phase                                      Description

Validate                                        Validate things like the pom.xml files

                                                Compile sources after resolving and
Compile
                                                downloading dependencies

Test                                            Run Unit Tests

Package                                         Create JAR or WAR

Integration-test                                Run integration tests against the package

Verify                                          Does the package meet quality criteria?

Install                                         Install in local repository


• Calling “mvn <build phase>” will call all steps before it in order
  • e.g. calling “mvn install” will call validate, then compile, then test, then .....
Understanding the POM.xml
Understanding the POM.xml




The pom.xml file is Maven’s build spec file (e.g.
              build.xml in Ant)
Understanding the POM.xml
     <project>
  <modelVersion>4.0.0</modelVersion>

  <!-- The Basics -->
  <groupId>...</groupId>
  <artifactId>...</artifactId>
  <version>...</version>
  <packaging>...</packaging>
  <dependencies>...</dependencies>
  <parent>...</parent>
  <dependencyManagement>...</dependencyManagement>
  <modules>...</modules>
  <properties>...</properties>

  <!-- Build Settings -->
  <build>...</build>
  <reporting>...</reporting>

  <!-- More Project Information -->
  <name>...</name>
  <description>...</description>
  <url>...</url>
  <inceptionYear>...</inceptionYear>
  <licenses>...</licenses>
  <organization>...</organization>
  <developers>...</developers>
  <contributors>...</contributors>

  <!-- Environment Settings -->
  <issueManagement>...</issueManagement>
  <ciManagement>...</ciManagement>
  <mailingLists>...</mailingLists>
  <scm>...</scm>
  <prerequisites>...</prerequisites>
  <repositories>...</repositories>
  <pluginRepositories>...</pluginRepositories>
  <distributionManagement>...</distributionManagement>
  <profiles>...</profiles>
</project>
Understanding the POM.xml
<project>
  <modelVersion>4.0.0</modelVersion>

  <!-- The Basics -->
  <groupId>...</groupId>
  <artifactId>...</artifactId>
  <version>...</version>
  <packaging>...</packaging>
  <dependencies>...</dependencies>
  <parent>...</parent>
  <dependencyManagement>...</dependencyManagement>
  <modules>...</modules>
  <properties>...</properties>

  <!-- Build Settings -->


                                          The elements you will likely use
  <build>...</build>
  <reporting>...</reporting>

  <!-- More Project Information -->
  <name>...</name>
  <description>...</description>
  <url>...</url>
  <inceptionYear>...</inceptionYear>
  <licenses>...</licenses>
  <organization>...</organization>
  <developers>...</developers>
  <contributors>...</contributors>

  <!-- Environment Settings -->
  <issueManagement>...</issueManagement>
  <ciManagement>...</ciManagement>
  <mailingLists>...</mailingLists>
  <scm>...</scm>
  <prerequisites>...</prerequisites>
  <repositories>...</repositories>
  <pluginRepositories>...</pluginRepositories>
  <distributionManagement>...</distributionManagement>
  <profiles>...</profiles>
</project>
The Basics (POM)
Understanding the POM.xml
The <groupId, artifactId, version> tuple forms a
                                                         <project>
unique address for a project (and its artifact)
                                                           <modelVersion>4.0.0</modelVersion>
   •It is aptly known as a Maven coordinate
                                                           <!-- The Basics -->
packaging defaults to jar. Other options include pom       <groupId>...</groupId>
and war                                                    <artifactId>...</artifactId>
                                                           <version>...</version>
dependencies refers to a set of dependency                 <packaging>...</packaging>
elements, each of which define a jar that this projects     <dependencies>...</dependencies>
depends on.                                                <parent>...</parent>
                                                           <modules>...</modules>
                                                           <properties>...</properties>
For example, if this project required Log4J, you would
specify a dependency element containing a Maven          ......
coordinate as shown below:                               </project>

<dependencies>
    <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
             <version>1.2.17</version>
        </dependency>
</dependencies>
Understanding the POM.xml
To figure out the co-ordinates for a jar when faced with a   <project>
ClassNoDefFound exception:                                    <modelVersion>4.0.0</modelVersion>

<dependencies>                                                <!-- The Basics -->
    <dependency>                                              <groupId>...</groupId>
             <groupId>log4j</groupId>                         <artifactId>...</artifactId>
             <artifactId>log4j</artifactId>                   <version>...</version>
             <version>1.2.17</version>                        <packaging>...</packaging>
        </dependency>                                         <dependencies>...</dependencies>
</dependencies>                                               <parent>...</parent>
                                                              <modules>...</modules>
                                                              <properties>...</properties>
1. Try searching on Jarvana ( http://jarvana.com/
                                                            ......
jarvana/ ). This will give you the names of jars
                                                            </project>
containing the Class in question

2. If you know the JAR name, search on Maven Central
for all versions of the JAR. Pick the version you like.

Both Maven Central and Jarvana provide Maven
coordinates.
Understanding the POM.xml
The parent and modules elements are needed for
                                                              <project>
parent-child projects.
                                                                <modelVersion>4.0.0</modelVersion>

                                                                <!-- The Basics -->
To illustrate, imagine a typical search-indexing project        <groupId>...</groupId>
called Foo.                                                     <artifactId>...</artifactId>
                                                                <version>...</version>
In our Foo project, imagine that we have 3 build artifacts:     <packaging>...</packaging>
                                                                <dependencies>...</dependencies>
1. An indexer.jar for Indexing code                             <parent>...</parent>
                                                                <modules>...</modules>
2. A search.war for Lucene-based servlet code                   <properties>...</properties>

3. A ui.war for UI-specific code                               ......
                                                              </project>

One way to structure the code is to create 3 Maven modules
(ui, indexer, and search) under a common parent (Foo)
Understanding the POM.xml
                                    Hence, we will have a directory structure as shown below:
                                    a Foo directory containing 3 sub-directories and 1 parent pom.xml:

                                          •
                                              a search sub-directory
                                                •
                                                 this follows the standard Maven Directory structure
                                                •
                                                 it contains a pom.xml for the search module

                                          •
                                              an indexer sub-directory
                                                •
                                                  this follows the standard Maven Directory structure
                                                •
                                                  it contains a pom.xml for the indexer module

                                          •
                                              a ui subdirectory
                                                •
                                                 this follows the standard Maven Directory structure
                                                •
                                                 it contains a pom.xml for the ui module
          Foo
                                          •
                                              a parent pom.xml file
                     search
search
                  pom.xml
                                indexer
indexer
                              pom.xml
                                                           ui
  ui
                                                    pom.xml

pom.xml
Understanding the POM.xml
                                                        <project>
<project>
                                                          <modelVersion>4.0.0</modelVersion>
  <modelVersion>4.0.0</modelVersion>
                                                          <!-- The Basics -->
  <!-- The Basics -->                                     <groupId>com.linkedin</groupId>
                                                          <artifactId>Foo-search</artifactId>
  <groupId>com.linkedin</groupId>                         <version>1.0</version>
  <artifactId>Foo</artifactId>                            <packaging>war</packaging>
  <version>1.0</version>                                  <parent>Foo</parent>
  <packaging>pom</packaging>                            ......
  <modules>                                             </project>
     <module>ui</module>                                <project>
     <module>search</module>                              <modelVersion>4.0.0</modelVersion>
     <module>indexer</module>                             <!-- The Basics -->
  </modules>                                              <groupId>com.linkedin</groupId>
......                                                    <artifactId>Foo-indexer</artifactId>
                                                          <version>1.0</version>
</project>
                                                          <packaging>jar</packaging>
                                                          <parent>Foo</parent>

                                                        ......
                                                        </project>
                   search                               <project>
 search                                                   <modelVersion>4.0.0</modelVersion>
                pom.xml
                                    indexer               <!-- The Basics -->
                                                          <groupId>com.linkedin</groupId>
 indexer                                                  <artifactId>Foo-ui</artifactId>
                              pom.xml
                                                   ui     <version>1.0</version>
                                                          <packaging>war</packaging>
   ui                                                     <parent>Foo</parent>
                                              pom.xml
                                                        ......
                                                        </project>
pom.xml
Understanding the POM.xml
                                                             <project>
<project>
                                                               <modelVersion>4.0.0</modelVersion>
  <modelVersion>4.0.0</modelVersion>
                                                               <!-- The Basics -->
  <!-- The Basics -->                                          <groupId>com.linkedin</groupId>
                                                               <artifactId>Foo-search</artifactId>
  <groupId>com.linkedin</groupId>                              <version>1.0</version>
  <artifactId>Foo</artifactId>                                 <packaging>war</packaging>
  <version>1.0</version>                                       <parent>Foo</parent>
  <packaging>pom</packaging>                                 ......
  <modules>                                                  </project>
     <module>ui</module>                                     <project>
     <module>search</module>                                   <modelVersion>4.0.0</modelVersion>
     <module>indexer</module>                 <Parent> Tag     <!-- The Basics -->
  </modules>                                     in child      <groupId>com.linkedin</groupId>
......                                          pom.xml        <artifactId>Foo-indexer</artifactId>
                                                               <version>1.0</version>
</project>
                                                               <packaging>jar</packaging>
                                                               <parent>Foo</parent>

                                                             ......
                   search                                    </project>
                                                             <project>
 search                                                        <modelVersion>4.0.0</modelVersion>
                pom.xml
                                    indexer                    <!-- The Basics -->
                                                               <groupId>com.linkedin</groupId>
 indexer                                                       <artifactId>Foo-ui</artifactId>
                              pom.xml
                                                     ui        <version>1.0</version>
                                                               <packaging>war</packaging>
   ui                                                          <parent>Foo</parent>
                                               pom.xml
                                                             ......
                                                             </project>
pom.xml
Understanding the POM.xml
                                                        <project>
<project>                                                 <modelVersion>4.0.0</modelVersion>
  <modelVersion>4.0.0</modelVersion>
                                                          <!-- The Basics -->
                                                          <groupId>com.linkedin</groupId>
  <!-- The Basics -->                                     <artifactId>Foo-search</artifactId>
  <groupId>com.linkedin</groupId>                         <version>1.0</version>
  <artifactId>Foo</artifactId>                            <packaging>war</packaging>
                                                          <parent>Foo</parent>
  <version>1.0</version>            pom
  <packaging>pom</packaging>    <packaging>             ......
  <modules>                         type                </project>
     <module>ui</module>                                <project>
                                                          <modelVersion>4.0.0</modelVersion>
     <module>search</module>
     <module>indexer</module> 3 <Module> <Parent> Tag     <!-- The Basics -->
  </modules>                    Tags in the  in child     <groupId>com.linkedin</groupId>
......                            parent    pom.xml       <artifactId>Foo-indexer</artifactId>
                                                          <version>1.0</version>
</project>                       pom.xml                  <packaging>jar</packaging>
                                                          <parent>Foo</parent>

                                                        ......
                                                        </project>
                   search                               <project>
 search                                                   <modelVersion>4.0.0</modelVersion>
                pom.xml
                                 indexer                  <!-- The Basics -->
                                                          <groupId>com.linkedin</groupId>
indexer                                                   <artifactId>Foo-ui</artifactId>
                              pom.xml
                                                 ui       <version>1.0</version>
                                                          <packaging>war</packaging>
   ui                                                     <parent>Foo</parent>
                                           pom.xml
                                                        ......
                                                        </project>
pom.xml
Understanding the POM.xml
 Some Useful Information

 -- The child POMs inherit the settings in the parent POM.

 -- Calling “mvn <command>” on the parent causes all child POMs to be executed

 -- Calling “mvn <command>” on a child POM executes on that single child POM, but does
 correctly inherit settings from parent POM




          Foo
                        search
search
                     pom.xml
                                       indexer
indexer
                                    pom.xml
                                                        ui
  ui
                                                   pom.xml

pom.xml
More Project Information (POM)
Understanding the POM.xml

                                       <!-- More Project Information -->
                                       <name>...</name>
                                       <description>...</description>
                                       <url>...</url>
These fields are pretty self-           <inceptionYear>...</inceptionYear>
explanatory. Good to include,          <licenses>...</licenses>
                                       <organization>...</organization>
especially for open-source projects.   <developers>...</developers>
                                       <contributors>...</contributors>
Environment Settings (POM)
Understanding the POM.xml
The repositories tag refers to refers to repositories that Maven
should refer to when looking for the jars listed in the dependencies
section that we already covered.                                            <!-- Environment Settings -->
                                                                              <issueManagement>...</issueManagement>
If you do not specify a repositories tag, Maven will look in the default      <ciManagement>...</ciManagement>
repository : http://search.maven.org/#browse (a.k.a. http://                  <mailingLists>...</mailingLists>
repo.maven.apache.org/maven2/ )                                               <scm>...</scm>
                                                                              <prerequisites>...</prerequisites>
If you need to access jars from a private repository (e.g. LinkedIn’s         <repositories>...</repositories>
Artifactory) and from the default public repository:                          <pluginRepositories>...</
                                                                            pluginRepositories>
repositories>                                                                 <distributionManagement>...</
  <repository>                                                              distributionManagement>
    <id>public-central</id>                                                   <profiles>...</profiles>
    <url> http://repo.maven.apache.org/maven2/ </url>                       </project>
    <snapshots>
       <enabled>false</enabled>
    </snapshots>
  </repository>
  <repository>
    <id>central-private</id>
    <url>
          http://artifactory.corp.linkedin.com......./artifactory/release
     </url>
    <snapshots>
       <enabled>false</enabled>
    </snapshots>
  </repository>
Understanding the POM.xml
The SCM tag refers to Source Control Management. Maven offers
pretty advanced plug-ins for Git and SVN.
                                                                   <!-- Environment Settings -->
An example Git SCM tag is shown below. With this enabled, you
                                                                     <issueManagement>...</issueManagement>
can use powerful features in Maven such as release. “mvn
                                                                     <ciManagement>...</ciManagement>
release:perform” can release a WAR or JAR to Artifactory or to a
                                                                     <mailingLists>...</mailingLists>
public Maven repo.
                                                                     <scm>...</scm>
                                                                     <prerequisites>...</prerequisites>
Once complete, Maven will automatically up-rev the pom.xml
                                                                     <repositories>...</repositories>
version and commit/push the new pom.xml to the Git “origin”
                                                                     <pluginRepositories>...</
server using the Git connect strings in the SCM tag.
                                                                   pluginRepositories>
                                                                     <distributionManagement>...</
                                                                   distributionManagement>
<scm>
                                                                     <profiles>...</profiles>
    <connection>                                                   </project>
      scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git
    </connection>
    <url>
      scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git
    </url>
    <developerConnection>
      scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git
    </developerConnection>
</scm>
Understanding the POM.xml
The distributionManagement tag is the reverse of the
repositories tag -- it refers to the repository where the build      <!-- Environment Settings -->
artifact (i.e. JAR or WAR) will be stored.                             <issueManagement>...</issueManagement>
                                                                       <ciManagement>...</ciManagement>
                                                                       <mailingLists>...</mailingLists>
From the previous “mvn release:perform” example, the information       <scm>...</scm>
in the distributionManagement tag tells Maven where to post the        <prerequisites>...</prerequisites>
jar.                                                                   <repositories>...</repositories>
                                                                       <pluginRepositories>...</
<distributionManagement >                                            pluginRepositories>
  <repository>                                                         <distributionManagement>...</
     <id>central-private</id>                                        distributionManagement>
     <url>                                                             <profiles>...</profiles>
          http://artifactory.corp.linkedin.com......./artifactory/   </project>
          release
     </url>
     <snapshots>
        <enabled>false</enabled>
     </snapshots>
  </repository>
</distributionManagement >
Some Useful Commands
Some Useful Commands
All commands must be run in the same directory containing the pom.xml.

• mvn clean, compile --> cleans the project, then compiles it
• mvn clean package --> previous step + create WAR or JAR
• mvn clean install --> previous step + run integration tests and install the WAR or JAR in the
local repository

• mvn release:prepare --> Does the following:
  • prompts the user for the version of the jar
  • alters the version in the POM.xml (i.e. 1.0-SNAPSHOT --> 1.0)
  • runs a clean-compile-test-package cycle
  • and generates a release.properties file
• mvn release:perform --> Does the following:
  • pushes the JAR/WAR to Artifactory or some public repo
  • If successful, bumps up the version in the pom.xml file (i.e. 1.0 --> 1.1-SNAPSHOT)
     • You should never need to alter the version in the POM.xml file!

More Related Content

What's hot

What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
Simplilearn
 

What's hot (20)

Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
AWS CodeCommit, CodeDeploy & CodePipeline
AWS CodeCommit, CodeDeploy & CodePipelineAWS CodeCommit, CodeDeploy & CodePipeline
AWS CodeCommit, CodeDeploy & CodePipeline
 
Maven Overview
Maven OverviewMaven Overview
Maven Overview
 
Spring Boot 3 And Beyond
Spring Boot 3 And BeyondSpring Boot 3 And Beyond
Spring Boot 3 And Beyond
 
REST APIs with Spring
REST APIs with SpringREST APIs with Spring
REST APIs with Spring
 
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | EdurekaWhat is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
 
Maven tutorial
Maven tutorialMaven tutorial
Maven tutorial
 
Learning how AWS implement AWS VPC CNI
Learning how AWS implement AWS VPC CNILearning how AWS implement AWS VPC CNI
Learning how AWS implement AWS VPC CNI
 
Jenkins를 활용한 Openshift CI/CD 구성
Jenkins를 활용한 Openshift CI/CD 구성 Jenkins를 활용한 Openshift CI/CD 구성
Jenkins를 활용한 Openshift CI/CD 구성
 
Build Automation using Maven
Build Automation using Maven Build Automation using Maven
Build Automation using Maven
 
Jenkins tutorial
Jenkins tutorialJenkins tutorial
Jenkins tutorial
 
An Introduction To Jenkins
An Introduction To JenkinsAn Introduction To Jenkins
An Introduction To Jenkins
 
Maven ppt
Maven pptMaven ppt
Maven ppt
 
Jenkins Pipelines
Jenkins PipelinesJenkins Pipelines
Jenkins Pipelines
 
An overview of selenium webdriver
An overview of selenium webdriverAn overview of selenium webdriver
An overview of selenium webdriver
 
Introduction to Ansible
Introduction to AnsibleIntroduction to Ansible
Introduction to Ansible
 
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
What Is Docker? | What Is Docker And How It Works? | Docker Tutorial For Begi...
 
Maven
MavenMaven
Maven
 
Building with Gradle
Building with GradleBuilding with Gradle
Building with Gradle
 
Apache maven 2 overview
Apache maven 2 overviewApache maven 2 overview
Apache maven 2 overview
 

Viewers also liked

Apache maven, a software project management tool
Apache maven, a software project management toolApache maven, a software project management tool
Apache maven, a software project management tool
Renato Primavera
 
An Introduction to Maven
An Introduction to MavenAn Introduction to Maven
An Introduction to Maven
Vadym Lotar
 

Viewers also liked (12)

Apache maven, a software project management tool
Apache maven, a software project management toolApache maven, a software project management tool
Apache maven, a software project management tool
 
Hibernate 3
Hibernate 3Hibernate 3
Hibernate 3
 
Maven
Maven Maven
Maven
 
Hibernate
HibernateHibernate
Hibernate
 
An introduction to Maven
An introduction to MavenAn introduction to Maven
An introduction to Maven
 
Maven and ANT
Maven and ANTMaven and ANT
Maven and ANT
 
An Introduction to Maven
An Introduction to MavenAn Introduction to Maven
An Introduction to Maven
 
Demystifying Maven
Demystifying MavenDemystifying Maven
Demystifying Maven
 
Intro To Hibernate
Intro To HibernateIntro To Hibernate
Intro To Hibernate
 
Spring Framework - MVC
Spring Framework - MVCSpring Framework - MVC
Spring Framework - MVC
 
Spring Framework - Core
Spring Framework - CoreSpring Framework - Core
Spring Framework - Core
 
Java 9 and the impact on Maven Projects (JavaOne 2016)
Java 9 and the impact on Maven Projects (JavaOne 2016)Java 9 and the impact on Maven Projects (JavaOne 2016)
Java 9 and the impact on Maven Projects (JavaOne 2016)
 

Similar to Hands On with Maven

Maven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafeMaven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafe
Holasz Kati
 
Note - Apache Maven Intro
Note - Apache Maven IntroNote - Apache Maven Intro
Note - Apache Maven Intro
boyw165
 

Similar to Hands On with Maven (20)

Maven in Mule
Maven in MuleMaven in Mule
Maven in Mule
 
Maven
MavenMaven
Maven
 
Maven
MavenMaven
Maven
 
Apache Maven
Apache MavenApache Maven
Apache Maven
 
intellimeet
intellimeetintellimeet
intellimeet
 
Maven
MavenMaven
Maven
 
Mavenppt
MavenpptMavenppt
Mavenppt
 
Maven introduction in Mule
Maven introduction in MuleMaven introduction in Mule
Maven introduction in Mule
 
Maven
MavenMaven
Maven
 
Apache Maven basics
Apache Maven basicsApache Maven basics
Apache Maven basics
 
Training in Android with Maven
Training in Android with MavenTraining in Android with Maven
Training in Android with Maven
 
Maven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafeMaven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafe
 
Introduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS worldIntroduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS world
 
An Introduction to Maven and Flex
An Introduction to Maven and FlexAn Introduction to Maven and Flex
An Introduction to Maven and Flex
 
Note - Apache Maven Intro
Note - Apache Maven IntroNote - Apache Maven Intro
Note - Apache Maven Intro
 
Java, Eclipse, Maven & JSF tutorial
Java, Eclipse, Maven & JSF tutorialJava, Eclipse, Maven & JSF tutorial
Java, Eclipse, Maven & JSF tutorial
 
Introduction to maven
Introduction to mavenIntroduction to maven
Introduction to maven
 
BMO - Intelligent Projects with Maven
BMO - Intelligent Projects with MavenBMO - Intelligent Projects with Maven
BMO - Intelligent Projects with Maven
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest Istanbul
 
Releasing Projects Using Maven
Releasing Projects Using MavenReleasing Projects Using Maven
Releasing Projects Using Maven
 

More from Sid Anand

Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)
Sid Anand
 

More from Sid Anand (20)

Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)
 
Building & Operating High-Fidelity Data Streams - QCon Plus 2021
Building & Operating High-Fidelity Data Streams - QCon Plus 2021Building & Operating High-Fidelity Data Streams - QCon Plus 2021
Building & Operating High-Fidelity Data Streams - QCon Plus 2021
 
Low Latency Fraud Detection & Prevention
Low Latency Fraud Detection & PreventionLow Latency Fraud Detection & Prevention
Low Latency Fraud Detection & Prevention
 
YOW! Data Keynote (2021)
YOW! Data Keynote (2021)YOW! Data Keynote (2021)
YOW! Data Keynote (2021)
 
Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)
 
Building Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache AirflowBuilding Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache Airflow
 
Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)
 
Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)
 
Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)
 
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo
Cloud Native Data Pipelines (in Eng & Japanese)  - QCon TokyoCloud Native Data Pipelines (in Eng & Japanese)  - QCon Tokyo
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo
 
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
 
Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016
 
Airflow @ Agari
Airflow @ Agari Airflow @ Agari
Airflow @ Agari
 
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
 
Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)
 
Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)
 
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
 
Building a Modern Website for Scale (QCon NY 2013)
Building a Modern Website for Scale (QCon NY 2013)Building a Modern Website for Scale (QCon NY 2013)
Building a Modern Website for Scale (QCon NY 2013)
 
Learning git
Learning gitLearning git
Learning git
 
LinkedIn Data Infrastructure Slides (Version 2)
LinkedIn Data Infrastructure Slides (Version 2)LinkedIn Data Infrastructure Slides (Version 2)
LinkedIn Data Infrastructure Slides (Version 2)
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

Hands On with Maven

  • 1. Hands On With Maven Sid Anand (LinkedIn) July 19, 2012
  • 2. Overview Maven is a build system providing A standard directory structure A standard build lifecycle The ability to override default behaviors via plug-ins Dependency management
  • 4. The Maven Directory Structure • A standard directory structure means that the build tool and the user agree on where different types of files can be found. • These conventions make coming up to speed on new projects much easier • Java Source Tree goes under /src/main/java • Property files goes under /src/main/resources • Web App files go under /src/main/webapp • /src/main/webapp/WEB-INF • /src/main/webapp/WEB-INF/web.xml • /src/main/webapp/*.jsp • /src/main/webapp/*.html
  • 5. The Maven Directory Structure Path Description /src/main/java root of source tree (e.g. com/linkedin/...) /src/main/resources Place configuration & property files here /src/main/scripts Place scripts here /src/main/webapp Place web resources here (e.g. .jsp, .html) root of test source tree (e.g. com/ /src/test/java linkedin/test/...) Place configuration & property files /src/test/resources needed for tests Generated during build. Contains all build /target/ output
  • 6. The Default Maven Life Cycle
  • 7. The Default Maven Life Cycle • A default Maven Life Cycle means that you do not need to manually specify build- steps and chain them together in each project: • target = “package” dependsOn = “unit-test” • target = “unit-test” dependsOn = “compile” • target = “compile” dependsOn = “validate” • If you have worked with other build-tools (e.g. Make, Scala Build Tool, Ant, etc...), you will find that you are copying build-specs and specifying this boiler-plate logic often • Maven specifies a set of standard build steps and also automatically chains them together • This is part of the Maven framework and is not the responsibility of the user to define
  • 8. The Default Maven Life Cycle Build Phase Description Validate Validate things like the pom.xml files Compile sources after resolving and Compile downloading dependencies Test Run Unit Tests Package Create JAR or WAR Integration-test Run integration tests against the package Verify Does the package meet quality criteria? Install Install in local repository • Calling “mvn <build phase>” will call all steps before it in order • e.g. calling “mvn install” will call validate, then compile, then test, then .....
  • 10. Understanding the POM.xml The pom.xml file is Maven’s build spec file (e.g. build.xml in Ant)
  • 11. Understanding the POM.xml <project> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <packaging>...</packaging> <dependencies>...</dependencies> <parent>...</parent> <dependencyManagement>...</dependencyManagement> <modules>...</modules> <properties>...</properties> <!-- Build Settings --> <build>...</build> <reporting>...</reporting> <!-- More Project Information --> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses>...</licenses> <organization>...</organization> <developers>...</developers> <contributors>...</contributors> <!-- Environment Settings --> <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> <scm>...</scm> <prerequisites>...</prerequisites> <repositories>...</repositories> <pluginRepositories>...</pluginRepositories> <distributionManagement>...</distributionManagement> <profiles>...</profiles> </project>
  • 12. Understanding the POM.xml <project> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <packaging>...</packaging> <dependencies>...</dependencies> <parent>...</parent> <dependencyManagement>...</dependencyManagement> <modules>...</modules> <properties>...</properties> <!-- Build Settings --> The elements you will likely use <build>...</build> <reporting>...</reporting> <!-- More Project Information --> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses>...</licenses> <organization>...</organization> <developers>...</developers> <contributors>...</contributors> <!-- Environment Settings --> <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> <scm>...</scm> <prerequisites>...</prerequisites> <repositories>...</repositories> <pluginRepositories>...</pluginRepositories> <distributionManagement>...</distributionManagement> <profiles>...</profiles> </project>
  • 14. Understanding the POM.xml The <groupId, artifactId, version> tuple forms a <project> unique address for a project (and its artifact) <modelVersion>4.0.0</modelVersion> •It is aptly known as a Maven coordinate <!-- The Basics --> packaging defaults to jar. Other options include pom <groupId>...</groupId> and war <artifactId>...</artifactId> <version>...</version> dependencies refers to a set of dependency <packaging>...</packaging> elements, each of which define a jar that this projects <dependencies>...</dependencies> depends on. <parent>...</parent> <modules>...</modules> <properties>...</properties> For example, if this project required Log4J, you would specify a dependency element containing a Maven ...... coordinate as shown below: </project> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> </dependencies>
  • 15. Understanding the POM.xml To figure out the co-ordinates for a jar when faced with a <project> ClassNoDefFound exception: <modelVersion>4.0.0</modelVersion> <dependencies> <!-- The Basics --> <dependency> <groupId>...</groupId> <groupId>log4j</groupId> <artifactId>...</artifactId> <artifactId>log4j</artifactId> <version>...</version> <version>1.2.17</version> <packaging>...</packaging> </dependency> <dependencies>...</dependencies> </dependencies> <parent>...</parent> <modules>...</modules> <properties>...</properties> 1. Try searching on Jarvana ( http://jarvana.com/ ...... jarvana/ ). This will give you the names of jars </project> containing the Class in question 2. If you know the JAR name, search on Maven Central for all versions of the JAR. Pick the version you like. Both Maven Central and Jarvana provide Maven coordinates.
  • 16. Understanding the POM.xml The parent and modules elements are needed for <project> parent-child projects. <modelVersion>4.0.0</modelVersion> <!-- The Basics --> To illustrate, imagine a typical search-indexing project <groupId>...</groupId> called Foo. <artifactId>...</artifactId> <version>...</version> In our Foo project, imagine that we have 3 build artifacts: <packaging>...</packaging> <dependencies>...</dependencies> 1. An indexer.jar for Indexing code <parent>...</parent> <modules>...</modules> 2. A search.war for Lucene-based servlet code <properties>...</properties> 3. A ui.war for UI-specific code ...... </project> One way to structure the code is to create 3 Maven modules (ui, indexer, and search) under a common parent (Foo)
  • 17. Understanding the POM.xml Hence, we will have a directory structure as shown below: a Foo directory containing 3 sub-directories and 1 parent pom.xml: • a search sub-directory • this follows the standard Maven Directory structure • it contains a pom.xml for the search module • an indexer sub-directory • this follows the standard Maven Directory structure • it contains a pom.xml for the indexer module • a ui subdirectory • this follows the standard Maven Directory structure • it contains a pom.xml for the ui module Foo • a parent pom.xml file search search pom.xml indexer indexer pom.xml ui ui pom.xml pom.xml
  • 18. Understanding the POM.xml <project> <project> <modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <!-- The Basics --> <groupId>com.linkedin</groupId> <artifactId>Foo-search</artifactId> <groupId>com.linkedin</groupId> <version>1.0</version> <artifactId>Foo</artifactId> <packaging>war</packaging> <version>1.0</version> <parent>Foo</parent> <packaging>pom</packaging> ...... <modules> </project> <module>ui</module> <project> <module>search</module> <modelVersion>4.0.0</modelVersion> <module>indexer</module> <!-- The Basics --> </modules> <groupId>com.linkedin</groupId> ...... <artifactId>Foo-indexer</artifactId> <version>1.0</version> </project> <packaging>jar</packaging> <parent>Foo</parent> ...... </project> search <project> search <modelVersion>4.0.0</modelVersion> pom.xml indexer <!-- The Basics --> <groupId>com.linkedin</groupId> indexer <artifactId>Foo-ui</artifactId> pom.xml ui <version>1.0</version> <packaging>war</packaging> ui <parent>Foo</parent> pom.xml ...... </project> pom.xml
  • 19. Understanding the POM.xml <project> <project> <modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <!-- The Basics --> <groupId>com.linkedin</groupId> <artifactId>Foo-search</artifactId> <groupId>com.linkedin</groupId> <version>1.0</version> <artifactId>Foo</artifactId> <packaging>war</packaging> <version>1.0</version> <parent>Foo</parent> <packaging>pom</packaging> ...... <modules> </project> <module>ui</module> <project> <module>search</module> <modelVersion>4.0.0</modelVersion> <module>indexer</module> <Parent> Tag <!-- The Basics --> </modules> in child <groupId>com.linkedin</groupId> ...... pom.xml <artifactId>Foo-indexer</artifactId> <version>1.0</version> </project> <packaging>jar</packaging> <parent>Foo</parent> ...... search </project> <project> search <modelVersion>4.0.0</modelVersion> pom.xml indexer <!-- The Basics --> <groupId>com.linkedin</groupId> indexer <artifactId>Foo-ui</artifactId> pom.xml ui <version>1.0</version> <packaging>war</packaging> ui <parent>Foo</parent> pom.xml ...... </project> pom.xml
  • 20. Understanding the POM.xml <project> <project> <modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <groupId>com.linkedin</groupId> <!-- The Basics --> <artifactId>Foo-search</artifactId> <groupId>com.linkedin</groupId> <version>1.0</version> <artifactId>Foo</artifactId> <packaging>war</packaging> <parent>Foo</parent> <version>1.0</version> pom <packaging>pom</packaging> <packaging> ...... <modules> type </project> <module>ui</module> <project> <modelVersion>4.0.0</modelVersion> <module>search</module> <module>indexer</module> 3 <Module> <Parent> Tag <!-- The Basics --> </modules> Tags in the in child <groupId>com.linkedin</groupId> ...... parent pom.xml <artifactId>Foo-indexer</artifactId> <version>1.0</version> </project> pom.xml <packaging>jar</packaging> <parent>Foo</parent> ...... </project> search <project> search <modelVersion>4.0.0</modelVersion> pom.xml indexer <!-- The Basics --> <groupId>com.linkedin</groupId> indexer <artifactId>Foo-ui</artifactId> pom.xml ui <version>1.0</version> <packaging>war</packaging> ui <parent>Foo</parent> pom.xml ...... </project> pom.xml
  • 21. Understanding the POM.xml Some Useful Information -- The child POMs inherit the settings in the parent POM. -- Calling “mvn <command>” on the parent causes all child POMs to be executed -- Calling “mvn <command>” on a child POM executes on that single child POM, but does correctly inherit settings from parent POM Foo search search pom.xml indexer indexer pom.xml ui ui pom.xml pom.xml
  • 23. Understanding the POM.xml <!-- More Project Information --> <name>...</name> <description>...</description> <url>...</url> These fields are pretty self- <inceptionYear>...</inceptionYear> explanatory. Good to include, <licenses>...</licenses> <organization>...</organization> especially for open-source projects. <developers>...</developers> <contributors>...</contributors>
  • 25. Understanding the POM.xml The repositories tag refers to refers to repositories that Maven should refer to when looking for the jars listed in the dependencies section that we already covered. <!-- Environment Settings --> <issueManagement>...</issueManagement> If you do not specify a repositories tag, Maven will look in the default <ciManagement>...</ciManagement> repository : http://search.maven.org/#browse (a.k.a. http:// <mailingLists>...</mailingLists> repo.maven.apache.org/maven2/ ) <scm>...</scm> <prerequisites>...</prerequisites> If you need to access jars from a private repository (e.g. LinkedIn’s <repositories>...</repositories> Artifactory) and from the default public repository: <pluginRepositories>...</ pluginRepositories> repositories> <distributionManagement>...</ <repository> distributionManagement> <id>public-central</id> <profiles>...</profiles> <url> http://repo.maven.apache.org/maven2/ </url> </project> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>central-private</id> <url> http://artifactory.corp.linkedin.com......./artifactory/release </url> <snapshots> <enabled>false</enabled> </snapshots> </repository>
  • 26. Understanding the POM.xml The SCM tag refers to Source Control Management. Maven offers pretty advanced plug-ins for Git and SVN. <!-- Environment Settings --> An example Git SCM tag is shown below. With this enabled, you <issueManagement>...</issueManagement> can use powerful features in Maven such as release. “mvn <ciManagement>...</ciManagement> release:perform” can release a WAR or JAR to Artifactory or to a <mailingLists>...</mailingLists> public Maven repo. <scm>...</scm> <prerequisites>...</prerequisites> Once complete, Maven will automatically up-rev the pom.xml <repositories>...</repositories> version and commit/push the new pom.xml to the Git “origin” <pluginRepositories>...</ server using the Git connect strings in the SCM tag. pluginRepositories> <distributionManagement>...</ distributionManagement> <scm> <profiles>...</profiles> <connection> </project> scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git </connection> <url> scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git </url> <developerConnection> scm:git:git@gitli.corp.linkedin.com:ds-platform/listt.git </developerConnection> </scm>
  • 27. Understanding the POM.xml The distributionManagement tag is the reverse of the repositories tag -- it refers to the repository where the build <!-- Environment Settings --> artifact (i.e. JAR or WAR) will be stored. <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> From the previous “mvn release:perform” example, the information <scm>...</scm> in the distributionManagement tag tells Maven where to post the <prerequisites>...</prerequisites> jar. <repositories>...</repositories> <pluginRepositories>...</ <distributionManagement > pluginRepositories> <repository> <distributionManagement>...</ <id>central-private</id> distributionManagement> <url> <profiles>...</profiles> http://artifactory.corp.linkedin.com......./artifactory/ </project> release </url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </distributionManagement >
  • 29. Some Useful Commands All commands must be run in the same directory containing the pom.xml. • mvn clean, compile --> cleans the project, then compiles it • mvn clean package --> previous step + create WAR or JAR • mvn clean install --> previous step + run integration tests and install the WAR or JAR in the local repository • mvn release:prepare --> Does the following: • prompts the user for the version of the jar • alters the version in the POM.xml (i.e. 1.0-SNAPSHOT --> 1.0) • runs a clean-compile-test-package cycle • and generates a release.properties file • mvn release:perform --> Does the following: • pushes the JAR/WAR to Artifactory or some public repo • If successful, bumps up the version in the pom.xml file (i.e. 1.0 --> 1.1-SNAPSHOT) • You should never need to alter the version in the POM.xml file!