SlideShare a Scribd company logo
Intelligent Projects with
Maven


We’ll examine Maven framework with its architecture and
create some sample projects!
Mert ÇALIŞKAN
Jan 2014
@mertcal
Mert ÇALIŞKAN
• ’02 Hacettepe Graduate
• Lecturer @ Hacettepe
• 10+Years of Enterprise Java Experience
• Coder @ t2.com.tr
• Author
• Open Source Software Advocate
• Founder of Ankara JUG
• Linkedin Profile available @

bit.ly/mertcaliskan
• @mertcal
My Books
Details available at http://amazon.com/author/mert
How many of you heard
about Maven?
Or using it?
• A project management framework from ASF.
• It’s a Uniform Build System.
• Making the build as easy as possible.
• Comprehensive model for software projects.
Maven is…
• Convention over Configuration 

(konfigurasyon yerine kurallar)
• Common Interfaces

The time of build engineers is over

Stop building the build and focus on development !
• Dependency Management

Public repositories
• Plugin Architecture
• Documentation

Generate documentation, reports ... 

What Maven provides
• You need JDK (not the JRE).
• Just download the binary from

http://maven.apache.org/download.cgi.
• Current latest version is 3.2.5.
• 3.2.x branch correlates with JDK6 while 3.1.x sticks
with JDK5
• Open it up to a folder and add it to the path of the
OS / EnvironmentVariable.
Installing Maven
To understand Maven
one first need to
understand
the
Project Object Model
(POM)
• It is what makes your project a Maven Project.
• It’s an XML file.
• Not just for building the project; but also,

project’s relationship, list of team members,
license, SCM and etc.
• Not only for Java projects
• you can build FLEX code with appropriate
plugins
• you can build Microsoft binaries from C# code
POM
Anatomy of POM
<project ...>
<parent />
<groupId /> <artifactId /> <version />
<packaging />
<developers /> <contributors />
<scm>... </scm>

<build>
<plugins>....</plugins>
</build>

<dependencies>....</dependencies>
<repositories>....</repositories>
<pluginRepositories>... </pluginRepositories>
<profiles>...</profiles>
<reporting>... </reporting>
</project>
Simplest POM
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>tr.org.bimo</groupId>
<artifactId>MavenApp</artifactId>
<version>1.0.0</version>
</project>
$ mvn install
compile code
run tests
package as jar
deploy to local repo}
Simplest POM
• GAV (groupid - artifactid - version) is the unique
identifier for the project.
• They are also called as the coordinates.
• groupid: is the identifier for a collection of related
modules. It’s more like a hierarchy that starts with the
organization and then move on with the specific
project group. (tr.org.bimo)
• artifactid: is the unique identifier or the simple name
of the module within a group (MavenApp)
• version: identifier for the build number of the project.
Question here is

How is that possible with 6 lines
of XML?
Where do I define the source
folders, test folders and all other
stuff ?
• Same analogy with java.lang.Object
• usr/share/Java/maven/lib/maven-model-
builder-3.2.5.jar:org/apache/maven/model/
pom-4.0.0.xml
• Standard directory layout
• Repo def. for http://repo1.maven.org/maven2
• To see the merged POM: 

mvn help:effective-pom
Super POM
Let’s create a 

Maven Project
• We’ll be using Eclipse Luna
• Version: IDE for JavaEE Developers is shipping with
Maven Plugins. (Beware of the embedded maven
bundled w/ Eclipse.)
• We’ll also create a project with the archetype soon.
• 3 built-in Life Cycles 

default: handles project deployment

clean: clean project files generated by a build

site: generate project’s site doc.
• Each lifecycle consists of phases in specific order.
• Zero or more goals attached to each phase.
Build LifeCycle
• Process for building and distributing an
artefact is clearly defined.
Build LifeCycle
default
integration-test
validate
compile
test
verify
install
deploy
mvn integration -test
default
integration-test
validate
compile
test
verify
install
deploy
mvn phase
mvn phase:goal
mvn phase phase:goal
mvn phase:goal phase:goal
integration-test
validate
compile
test
Build LifeCycle
• validate - validate the project is correct and all
necessary information is available
• compile - compile the source code of the project
• test - test the compiled source code using a suitable
unit testing framework.These tests should not
require the code be packaged or deployed
• package - take the compiled code and package it in its
distributable format, such as a JAR.
Build LifeCycle
• integration-test - process and deploy the package if
necessary into an environment where integration
tests can be run
• verify - run any checks to verify the package is valid
and meets quality criteria
• install - install the package into the local repository,
for use as a dependency in other projects locally
• deploy - done in an integration or release
environment, copies the final package to the remote
repository for sharing with other developers and
projects.
default - full bundle (21 steps)
validate
Validates whether project is correct and all necessary information
is available to complete the build process.
initialize Initialises build state, for example set properties.
generate-sources Generate any source code to be included in compilation phase.
process-sources Process the source code, for example, filter any value.
generate-resources Generate resources to be included in the package.
process-resources
Copy and process the resources into the destination directory,
ready for packaging phase.
compile Compile the source code of the project.
process-classes
Post-process the generated files from compilation, for example to
do bytecode enhancement/optimization on Java classes.
generate-test-
sources
Generate any test source code to be included in compilation
phase.
process-test-
sources
Process the test source code, for example, filter any values.
test-compile Compile the test source code into the test destination directory.
process-test-
classes
Process the generated files from test code file compilation.
default - cont’d
test Run tests using a suitable unit testing framework.
prepare-package
Perform any operations necessary to prepare a package before
the actual packaging.
package
Take the compiled code and package it in its distributable format,
such as a JAR, WAR, or EAR file.
pre-integration-test
Perform actions required before integration tests are executed.
For example, setting up the required environment.
integration-test
Process and deploy the package if necessary into an
environment where integration tests can be run.
post-integration-
test
Perform actions required after integration tests have been
executed. For example, cleaning up the environment.
verify
Run any check-ups to verify the package is valid and meets
quality criterias.
install
Install the package into the local repository, which can be used
as a dependency in other projects locally.
deploy
Copies the final package to the remote repository for sharing
with other developers and projects.
• It’s where Maven can ease the development when
you have hundreds of modules.
• You may also depend on external frameworks and
maven will fetch them from repositories.
• It happens with the Coordinates ! (GAV factor)











Dependency Mechanism
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
<scope>compile</scope>
<optional>false</optional>
</dependency>
• Transitive Dependencies are introduced with
Maven version 2.0.
• It allows you get the libraries that your own
dependencies require and include them
automatically.You don’t need to take care of those
explicitly.
• There is no limit to the number of levels on
dependencies.
Transitive Dependencies
• If projectX depends on
projectY and 

projectY depends on projectZ, 



the owner of projectX can
define an exclusion on projectZ 

for not to fetch it while fetching
projectY.
Dependency Exclusion
X
Y
Z
Usage of <exclusion>
<dependency>
<groupId>mycompany</groupId>
<artifactId>myproject</artifactId>
<version>1.0</version>
<exclusions>
<exclusion>
<groupId>mycompany</groupId>
<artifactId>myotherproject</artifactId>
</exclusion>
</exclusions>
</dependency>
• Let’s say projectY releases itself
and mark its dependency on
projectZ as optional.When
projectX depends on the
projectY, project X will only
depend on theY but not the Z.
But it may also add the Z as a
dependency if needed.
Optional Dependencies
X
Y
Z
(optional)
Usage of <optional>
<dependency>
<groupId>mycompany</groupId>
<artifactId>projectZ</artifactId>
<version>1.0</version>
<optional>true</optional>
</dependency>
• ProjectY defines ProjectZ as below with optional
dep.
Sample <dependencies>
<dependencies>

<dependency>

<groupId>org.springframework</groupId>

<artifactId>spring-core</artifactId>

<version>4.1.2.RELEASE</version>

</dependency>

<dependency>

<groupId>org.hibernate</groupId>

<artifactId>hibernate-core</artifactId>

<version>4.3.2.Final</version>

</dependency>

</dependencies>
Scope for Dependencies
compile
testruntime
provided
system import
C T RCompile
Classpaths
Test Runtime
Scope for Dependencies
compile default scope, compile scoped dependencies will be in classpathCTR
provided
similar to the compile, artefact should be provided by 

JDK / container @ runtimeCT
not needed for compilation but need @ runtimeruntimeTR
testT dependency only needed for test compilation & execution
with maven 2.0.9...dependency to be replaced with
the dependencies in that POM's
<dependencyManagement> section.
import---
systemCT same as provided, but artefact should be provided
explicitly with <systemPath />
Classpath
Versioning and Ranges
<major>.<minor>.<incremental>-<buildnumber>.<qualifier>
MajorVersion: 1.2
MinorVersion: 1.3
IncrementalVersion: 1.3.1
BuildNumber: 1.3.2-12
Qualifier: 1.2-beta-2
1.2-beta-2 < 1.2
All versions with a qualifier are older than the same version
without a qualifier.
Identical versions with different qualifier fields are compared by
using basic string comparison.
1.2-beta-2 is >1.2-alpha-6
Versioning and Ranges
• Maven 2.x was supporting meta-versions like LATEST
and RELEASE to specify special versions.
• But for the sake of reproducible builds, Maven 3.x no
longer supports usage of these meta-versions in
POM.
(, ) - Exclusive

[, ] - Inclusive
<version>[3.8 , 4.12)</version>
<version>[3.8]</version>
<version>[ , 3.8]</version>Dependency
Mediation
• Ranges can be defined as exclusive and inclusive.
Release and Snapshot
Versioning
• Snapshot versioning: Used by the projects during
development as it implies that the project is still
under development and it may change.



<version>0.0.2-SNAPSHOT</version>
• Release versioning: It’s the versioning that is assumed
never to change. Only to be used for a single state of
the project when it is released then updated to a
next snapshot. 



<version>0.0.1</version>
Archetypes
• Templates for Maven projects
• Descriptor XML files +Velocity templates
• To create a Maven project:
mvn archetype:generate -DgroupId=tr.org.bimo -DartifactId=sampleApp -
Dversion=1.0-SNAPSHOT -DarchetypeGroupId=org.apache.maven.archetypes -
DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.0
Let’s create a 

Maven Project
with an archetype
• By using an archetype from JBOSS repository
• https://repository.jboss.org/nexus/content/
repositories/releases/archetype-catalog.xml
• We will have Domain classes, Web Pages, in
memory database, REST services and etc.
(G:A:V) org.jboss.spring.archetyes : jboss-spring-mvc-archetype : 1.0.0.Final
How Maven resolve
versions?
A : A : 1.0
B : B : 1.0C : C : 1.0
B : B : 2.0
commons-logging
commons-logging
1.0.1
commons-logging
commons-logging
1.1.1
commons-logging
commons-logging
1.1.1
D : D : 1.0
commons-logging
commons-logging
1.0.4
Which B will
Maven choose?
B:2.0
the highest one?
G:A:V
A : A : 1.0
B : B : 1.0C : C : 1.0
B : B : 2.0
commons-logging
commons-logging
1.0.1
commons-logging
commons-logging
1.1.1
commons-logging
commons-logging
1.1.1
D : D : 1.0
commons-logging
commons-logging
1.0.4
Maven will choose 

the closest one.
A : A : 1.0
B : B : 1.0C : C : 1.0
B : B : 2.0
commons-logging
commons-logging
1.0.1
commons-logging
commons-logging
1.1.1
commons-logging
commons-logging
1.1.1
D : D : 1.0
commons-logging
commons-logging
1.0.4
Which
commons-logging?
??
?
?
A : A : 1.0
B : B : 1.0C : C : 1.0
B : B : 2.0
commons-logging
commons-logging
1.0.1
commons-logging
commons-logging
1.1.1
commons-logging
commons-logging
1.1.1
D : D : 1.0
commons-logging
commons-logging
1.0.4
The Sequential first at the same distance…
The Final Graph…
A : A : 1.0
B : B : 1.0C : C : 1.0
commons-logging
commons-logging
1.0.4
D : D : 1.0
Question:
Project A will work in the end 

OR not?
A : A : 1.0
B : B : 1.0C : C : 1.0
commons-logging
commons-logging
1.0.4
D : D : 1.0
Managing
Projects’ Dependencies
Inheritance
ParentApp
ChildApp
<<extends>>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tr.org.bimo</groupId>
<artifactId>ParentApp</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<groupId>tr.org.bimo</groupId>
<artifactId>ChildApp</artifactId>
<version>1.0.0-SNAPSHOT</version>
</project>
Aggregation
ProjectA ProjectB ProjectC
<<depends>> <<depends>>
root $ cd ProjectC
projectC $ mvn compile
projectC $ cd ..
root $ cd ProjectB
projectB $ mvn compile
projectB $ cd ..
root $ cd ProjectA
projectA $ mvn compile
} 8 lines !!!
Aggregation
modulesapp
ProjectA ProjectB
ProjectC
<<module>>
<<module>>
<<module>>
root $ cd modulesapp
modulesapp $ mvn compile
modulesapp:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>tr.org.bimo</groupId>
<artifactId>modulesapp</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>modulesapp</name>
<modules>
<module>projectA</module>
<module>projectB</module>
<module>projectC</module>
</modules>
</project>
Question here is:
With mvn compile
which module will compile
first?
<modules>
<module>projectA</module>
<module>projectB</module>
<module>projectC</module>
</modules>
Repositories
• To manage build artefacts and dependencies
• local or remote repositories
• Can store jar, war, ear, ejb, rar ....
• Maven looks to at least 2 repository if none
specified 

- local one (under user home)

- http://repo.maven.apache.org/maven2 

(defined in uber-pom)
• Release & Snapshot repositories
Repositories
<repository>
<id>jboss-repo</id>
<name>The Release JBoss maven repo</name>
<url>http://repository.jboss.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>jboss-snapshot-repo</id>
<name>The Snapshot JBoss maven repo</name>
<url>http://snapshots.jboss.org/maven2</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
Plugins
• Plugin-oriented Architecture

plugin for even compiling the code..
• A maven artefact w/ descriptor (plugin.xml) and one or more MOJOs
• A MOJO is a Maven plain Old Java Object. Each mojo is an executable
goal in Maven, and a plugin is a distribution of one or more related
MOJOs.
• In short, a MOJO is a maven goal, to extend functionality not already
found in Maven.
• Plexus as its IoC. (Guice also introduced with version 3.x)

Why not Spring?
• List of plugins supported by Maven Project.

https://maven.apache.org/plugins
Plugin Development
<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>tr.org.bimo</groupId>
<artifactId>hello-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Plugin Development
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
</dependency>
</dependencies>
</project>
Plugin Development
Mojo Code
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
@Mojo( name = "sayhi")
public class GreetingMojo extends AbstractMojo {
public void execute() throws MojoExecutionException {
getLog().info( "Hello world." );
}
}
Use the plugin
<build>
<plugins>
<plugin>
<groupId>tr.org.bimo</groupId>
<artifactId>hello-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>sayhi</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
What we did w/ plugins in
PrimeFaces
• Component Class
• Tag Handler Class
• Declare Component,Tag, Renderer classes in faces-config.xml
• Declare facelet tag definition
• Declare tld tag definition
• maven-jsf-plugin
• plugin available @ 

http://repository.primefaces.org/org/primefaces/maven-jsf-plugin
settings.xml
• Maven provides 2 settings file,
• Local settings.xml at %USER_HOME%/.m2/settings.xml
• Global settings.xml at %M2_HOME%/conf/settings.xml
• These files are not bundled with Maven project and don’t get
distributed.
• If both files exist, their contents get merged.
• Local settings.xml overrides the global one.
And not to forget that…
Maven is our precious…
Thank you..!

More Related Content

What's hot (19)

PDF
JPQL/ JPA Activity 1
SFI
 
PDF
MicroProfile: Optimizing Java EE for a Microservices Architecture
jclingan
 
PPT
Java EE and Spring Side-by-Side
Reza Rahman
 
PPTX
Micronaut: A new way to build microservices
Luram Archanjo
 
PPTX
Faster java ee builds with gradle [con4921]
Ryan Cuprak
 
PDF
Running Spring Boot Applications as GraalVM Native Images
VMware Tanzu
 
PDF
Peering Inside the Black Box: A Case for Observability
VMware Tanzu
 
PDF
Apache DeltaSpike
os890
 
PPTX
Node.js Development with Apache NetBeans
Ryan Cuprak
 
ODP
Java Concurrent
NexThoughts Technologies
 
PDF
MicroProfile Devoxx.us
jclingan
 
PPTX
Testing Java EE apps with Arquillian
Ivan Ivanov
 
PPTX
Maven
feng lee
 
PPTX
Why jakarta ee matters (ConFoo 2021)
Ryan Cuprak
 
PDF
Spring Native and Spring AOT
VMware Tanzu
 
PDF
Developing modern java web applications with java ee 7 and angular js
Shekhar Gulati
 
PPTX
Java EE 8 Update
Ryan Cuprak
 
PDF
Liferay maven sdk
Mika Koivisto
 
ODP
Spring Mvc,Java, Spring
ifnu bima
 
JPQL/ JPA Activity 1
SFI
 
MicroProfile: Optimizing Java EE for a Microservices Architecture
jclingan
 
Java EE and Spring Side-by-Side
Reza Rahman
 
Micronaut: A new way to build microservices
Luram Archanjo
 
Faster java ee builds with gradle [con4921]
Ryan Cuprak
 
Running Spring Boot Applications as GraalVM Native Images
VMware Tanzu
 
Peering Inside the Black Box: A Case for Observability
VMware Tanzu
 
Apache DeltaSpike
os890
 
Node.js Development with Apache NetBeans
Ryan Cuprak
 
Java Concurrent
NexThoughts Technologies
 
MicroProfile Devoxx.us
jclingan
 
Testing Java EE apps with Arquillian
Ivan Ivanov
 
Maven
feng lee
 
Why jakarta ee matters (ConFoo 2021)
Ryan Cuprak
 
Spring Native and Spring AOT
VMware Tanzu
 
Developing modern java web applications with java ee 7 and angular js
Shekhar Gulati
 
Java EE 8 Update
Ryan Cuprak
 
Liferay maven sdk
Mika Koivisto
 
Spring Mvc,Java, Spring
ifnu bima
 

Viewers also liked (20)

PPT
Using Maven 2
andyhot
 
PPT
Goal4d
andyhot
 
PDF
Cours design pattern m youssfi partie 5 adapter
ENSET, Université Hassan II Casablanca
 
PDF
Cours design pattern m youssfi partie 7 facade bridge flyweight
ENSET, Université Hassan II Casablanca
 
PDF
Cours design pattern m youssfi partie 2 observer
ENSET, Université Hassan II Casablanca
 
PDF
Cours design pattern m youssfi partie 8 stat, template method, command , medi...
ENSET, Université Hassan II Casablanca
 
PPTX
An introduction to Maven
Joao Pereira
 
PDF
softCours design pattern m youssfi partie 9 creation des objets abstract fact...
ENSET, Université Hassan II Casablanca
 
PDF
Cours design pattern m youssfi partie 1 introduction et pattern strategy
ENSET, Université Hassan II Casablanca
 
PDF
Java entreprise edition et industrialisation du génie logiciel par m.youssfi
ENSET, Université Hassan II Casablanca
 
PDF
Systèmes multi agents concepts et mise en oeuvre avec le middleware jade
ENSET, Université Hassan II Casablanca
 
PDF
Développement d'un site web jee de e commerce basé sur spring (m.youssfi)
ENSET, Université Hassan II Casablanca
 
PDF
Support programmation orientée aspect mohamed youssfi (aop)
ENSET, Université Hassan II Casablanca
 
PDF
Support de Cours JSF2 Première partie Intégration avec Spring
ENSET, Université Hassan II Casablanca
 
PDF
Maven et industrialisation du logiciel
ENSET, Université Hassan II Casablanca
 
PDF
Support programmation orientée objet c# .net version f8
ENSET, Université Hassan II Casablanca
 
PDF
Mohamed youssfi support architectures logicielles distribuées basées sue les ...
ENSET, Université Hassan II Casablanca
 
PDF
Support de cours technologie et application m.youssfi
ENSET, Université Hassan II Casablanca
 
PPT
Présentation Maven
SOAT
 
PDF
Support de cours Spring M.youssfi
ENSET, Université Hassan II Casablanca
 
Using Maven 2
andyhot
 
Goal4d
andyhot
 
Cours design pattern m youssfi partie 5 adapter
ENSET, Université Hassan II Casablanca
 
Cours design pattern m youssfi partie 7 facade bridge flyweight
ENSET, Université Hassan II Casablanca
 
Cours design pattern m youssfi partie 2 observer
ENSET, Université Hassan II Casablanca
 
Cours design pattern m youssfi partie 8 stat, template method, command , medi...
ENSET, Université Hassan II Casablanca
 
An introduction to Maven
Joao Pereira
 
softCours design pattern m youssfi partie 9 creation des objets abstract fact...
ENSET, Université Hassan II Casablanca
 
Cours design pattern m youssfi partie 1 introduction et pattern strategy
ENSET, Université Hassan II Casablanca
 
Java entreprise edition et industrialisation du génie logiciel par m.youssfi
ENSET, Université Hassan II Casablanca
 
Systèmes multi agents concepts et mise en oeuvre avec le middleware jade
ENSET, Université Hassan II Casablanca
 
Développement d'un site web jee de e commerce basé sur spring (m.youssfi)
ENSET, Université Hassan II Casablanca
 
Support programmation orientée aspect mohamed youssfi (aop)
ENSET, Université Hassan II Casablanca
 
Support de Cours JSF2 Première partie Intégration avec Spring
ENSET, Université Hassan II Casablanca
 
Maven et industrialisation du logiciel
ENSET, Université Hassan II Casablanca
 
Support programmation orientée objet c# .net version f8
ENSET, Université Hassan II Casablanca
 
Mohamed youssfi support architectures logicielles distribuées basées sue les ...
ENSET, Université Hassan II Casablanca
 
Support de cours technologie et application m.youssfi
ENSET, Université Hassan II Casablanca
 
Présentation Maven
SOAT
 
Support de cours Spring M.youssfi
ENSET, Université Hassan II Casablanca
 
Ad

Similar to BMO - Intelligent Projects with Maven (20)

PDF
Introduction to maven, its configuration, lifecycle and relationship to JS world
Dmitry Bakaleinik
 
PPTX
Introduction to maven
Manos Georgopoulos
 
PPTX
20091112 - Mars Jug - Apache Maven
Arnaud Héritier
 
PPTX
Maven Basics - Explained
Smita Prasad
 
PPTX
Introduction to Maven
Mindfire Solutions
 
PDF
Maven
Jyothi Malapati
 
PDF
Maven
Jyothi Malapati
 
PDF
A-Z_Maven.pdf
Mithilesh Singh
 
PPT
MAVEN
shayan n
 
PDF
Apache maven, a software project management tool
Renato Primavera
 
PDF
Introduction to Apache Maven
Rajind Ruparathna
 
PPTX
Maven basics
Vijay Krishnan Ramaswamy
 
PDF
Mavennotes.pdf
AnkurSingh656748
 
PPSX
Maven Presentation - SureFire vs FailSafe
Holasz Kati
 
PPT
Introduction tomaven
Manav Prasad
 
PPT
Maven Introduction
Sandeep Chawla
 
PPTX
Maven in mulesoft
venkata20k
 
PPTX
Maven
Emprovise
 
Introduction to maven, its configuration, lifecycle and relationship to JS world
Dmitry Bakaleinik
 
Introduction to maven
Manos Georgopoulos
 
20091112 - Mars Jug - Apache Maven
Arnaud Héritier
 
Maven Basics - Explained
Smita Prasad
 
Introduction to Maven
Mindfire Solutions
 
A-Z_Maven.pdf
Mithilesh Singh
 
MAVEN
shayan n
 
Apache maven, a software project management tool
Renato Primavera
 
Introduction to Apache Maven
Rajind Ruparathna
 
Mavennotes.pdf
AnkurSingh656748
 
Maven Presentation - SureFire vs FailSafe
Holasz Kati
 
Introduction tomaven
Manav Prasad
 
Maven Introduction
Sandeep Chawla
 
Maven in mulesoft
venkata20k
 
Maven
Emprovise
 
Ad

More from Mert Çalışkan (6)

PPTX
JavaOne - 10 Tips for Java EE 7 with PrimeFaces
Mert Çalışkan
 
PDF
Better Career with Java
Mert Çalışkan
 
PDF
Test Infected
Mert Çalışkan
 
KEY
Gelecex - Maven ile Akilli Projeler
Mert Çalışkan
 
PDF
Fikrim Acik Kodum Acik
Mert Çalışkan
 
KEY
Enterprise Java Web Application Frameworks Sample Stack Implementation
Mert Çalışkan
 
JavaOne - 10 Tips for Java EE 7 with PrimeFaces
Mert Çalışkan
 
Better Career with Java
Mert Çalışkan
 
Test Infected
Mert Çalışkan
 
Gelecex - Maven ile Akilli Projeler
Mert Çalışkan
 
Fikrim Acik Kodum Acik
Mert Çalışkan
 
Enterprise Java Web Application Frameworks Sample Stack Implementation
Mert Çalışkan
 

BMO - Intelligent Projects with Maven

  • 1. Intelligent Projects with Maven 
 We’ll examine Maven framework with its architecture and create some sample projects! Mert ÇALIŞKAN Jan 2014 @mertcal
  • 2. Mert ÇALIŞKAN • ’02 Hacettepe Graduate • Lecturer @ Hacettepe • 10+Years of Enterprise Java Experience • Coder @ t2.com.tr • Author • Open Source Software Advocate • Founder of Ankara JUG • Linkedin Profile available @
 bit.ly/mertcaliskan • @mertcal
  • 3. My Books Details available at http://amazon.com/author/mert
  • 4. How many of you heard about Maven? Or using it?
  • 5. • A project management framework from ASF. • It’s a Uniform Build System. • Making the build as easy as possible. • Comprehensive model for software projects. Maven is…
  • 6. • Convention over Configuration 
 (konfigurasyon yerine kurallar) • Common Interfaces
 The time of build engineers is over
 Stop building the build and focus on development ! • Dependency Management
 Public repositories • Plugin Architecture • Documentation
 Generate documentation, reports ... 
 What Maven provides
  • 7. • You need JDK (not the JRE). • Just download the binary from
 http://maven.apache.org/download.cgi. • Current latest version is 3.2.5. • 3.2.x branch correlates with JDK6 while 3.1.x sticks with JDK5 • Open it up to a folder and add it to the path of the OS / EnvironmentVariable. Installing Maven
  • 8. To understand Maven one first need to understand the Project Object Model (POM)
  • 9. • It is what makes your project a Maven Project. • It’s an XML file. • Not just for building the project; but also,
 project’s relationship, list of team members, license, SCM and etc. • Not only for Java projects • you can build FLEX code with appropriate plugins • you can build Microsoft binaries from C# code POM
  • 10. Anatomy of POM <project ...> <parent /> <groupId /> <artifactId /> <version /> <packaging /> <developers /> <contributors /> <scm>... </scm>
 <build> <plugins>....</plugins> </build>
 <dependencies>....</dependencies> <repositories>....</repositories> <pluginRepositories>... </pluginRepositories> <profiles>...</profiles> <reporting>... </reporting> </project>
  • 12. Simplest POM • GAV (groupid - artifactid - version) is the unique identifier for the project. • They are also called as the coordinates. • groupid: is the identifier for a collection of related modules. It’s more like a hierarchy that starts with the organization and then move on with the specific project group. (tr.org.bimo) • artifactid: is the unique identifier or the simple name of the module within a group (MavenApp) • version: identifier for the build number of the project.
  • 13. Question here is
 How is that possible with 6 lines of XML? Where do I define the source folders, test folders and all other stuff ?
  • 14. • Same analogy with java.lang.Object • usr/share/Java/maven/lib/maven-model- builder-3.2.5.jar:org/apache/maven/model/ pom-4.0.0.xml • Standard directory layout • Repo def. for http://repo1.maven.org/maven2 • To see the merged POM: 
 mvn help:effective-pom Super POM
  • 15. Let’s create a 
 Maven Project • We’ll be using Eclipse Luna • Version: IDE for JavaEE Developers is shipping with Maven Plugins. (Beware of the embedded maven bundled w/ Eclipse.) • We’ll also create a project with the archetype soon.
  • 16. • 3 built-in Life Cycles 
 default: handles project deployment
 clean: clean project files generated by a build
 site: generate project’s site doc. • Each lifecycle consists of phases in specific order. • Zero or more goals attached to each phase. Build LifeCycle • Process for building and distributing an artefact is clearly defined.
  • 18. mvn integration -test default integration-test validate compile test verify install deploy mvn phase mvn phase:goal mvn phase phase:goal mvn phase:goal phase:goal integration-test validate compile test
  • 19. Build LifeCycle • validate - validate the project is correct and all necessary information is available • compile - compile the source code of the project • test - test the compiled source code using a suitable unit testing framework.These tests should not require the code be packaged or deployed • package - take the compiled code and package it in its distributable format, such as a JAR.
  • 20. Build LifeCycle • integration-test - process and deploy the package if necessary into an environment where integration tests can be run • verify - run any checks to verify the package is valid and meets quality criteria • install - install the package into the local repository, for use as a dependency in other projects locally • deploy - done in an integration or release environment, copies the final package to the remote repository for sharing with other developers and projects.
  • 21. default - full bundle (21 steps) validate Validates whether project is correct and all necessary information is available to complete the build process. initialize Initialises build state, for example set properties. generate-sources Generate any source code to be included in compilation phase. process-sources Process the source code, for example, filter any value. generate-resources Generate resources to be included in the package. process-resources Copy and process the resources into the destination directory, ready for packaging phase. compile Compile the source code of the project. process-classes Post-process the generated files from compilation, for example to do bytecode enhancement/optimization on Java classes. generate-test- sources Generate any test source code to be included in compilation phase. process-test- sources Process the test source code, for example, filter any values. test-compile Compile the test source code into the test destination directory. process-test- classes Process the generated files from test code file compilation.
  • 22. default - cont’d test Run tests using a suitable unit testing framework. prepare-package Perform any operations necessary to prepare a package before the actual packaging. package Take the compiled code and package it in its distributable format, such as a JAR, WAR, or EAR file. pre-integration-test Perform actions required before integration tests are executed. For example, setting up the required environment. integration-test Process and deploy the package if necessary into an environment where integration tests can be run. post-integration- test Perform actions required after integration tests have been executed. For example, cleaning up the environment. verify Run any check-ups to verify the package is valid and meets quality criterias. install Install the package into the local repository, which can be used as a dependency in other projects locally. deploy Copies the final package to the remote repository for sharing with other developers and projects.
  • 23. • It’s where Maven can ease the development when you have hundreds of modules. • You may also depend on external frameworks and maven will fetch them from repositories. • It happens with the Coordinates ! (GAV factor)
 
 
 
 
 
 Dependency Mechanism <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> <scope>compile</scope> <optional>false</optional> </dependency>
  • 24. • Transitive Dependencies are introduced with Maven version 2.0. • It allows you get the libraries that your own dependencies require and include them automatically.You don’t need to take care of those explicitly. • There is no limit to the number of levels on dependencies. Transitive Dependencies
  • 25. • If projectX depends on projectY and 
 projectY depends on projectZ, 
 
 the owner of projectX can define an exclusion on projectZ 
 for not to fetch it while fetching projectY. Dependency Exclusion X Y Z
  • 27. • Let’s say projectY releases itself and mark its dependency on projectZ as optional.When projectX depends on the projectY, project X will only depend on theY but not the Z. But it may also add the Z as a dependency if needed. Optional Dependencies X Y Z (optional)
  • 30. Scope for Dependencies compile testruntime provided system import C T RCompile Classpaths Test Runtime
  • 31. Scope for Dependencies compile default scope, compile scoped dependencies will be in classpathCTR provided similar to the compile, artefact should be provided by 
 JDK / container @ runtimeCT not needed for compilation but need @ runtimeruntimeTR testT dependency only needed for test compilation & execution with maven 2.0.9...dependency to be replaced with the dependencies in that POM's <dependencyManagement> section. import--- systemCT same as provided, but artefact should be provided explicitly with <systemPath /> Classpath
  • 32. Versioning and Ranges <major>.<minor>.<incremental>-<buildnumber>.<qualifier> MajorVersion: 1.2 MinorVersion: 1.3 IncrementalVersion: 1.3.1 BuildNumber: 1.3.2-12 Qualifier: 1.2-beta-2 1.2-beta-2 < 1.2 All versions with a qualifier are older than the same version without a qualifier. Identical versions with different qualifier fields are compared by using basic string comparison. 1.2-beta-2 is >1.2-alpha-6
  • 33. Versioning and Ranges • Maven 2.x was supporting meta-versions like LATEST and RELEASE to specify special versions. • But for the sake of reproducible builds, Maven 3.x no longer supports usage of these meta-versions in POM. (, ) - Exclusive
 [, ] - Inclusive <version>[3.8 , 4.12)</version> <version>[3.8]</version> <version>[ , 3.8]</version>Dependency Mediation • Ranges can be defined as exclusive and inclusive.
  • 34. Release and Snapshot Versioning • Snapshot versioning: Used by the projects during development as it implies that the project is still under development and it may change.
 
 <version>0.0.2-SNAPSHOT</version> • Release versioning: It’s the versioning that is assumed never to change. Only to be used for a single state of the project when it is released then updated to a next snapshot. 
 
 <version>0.0.1</version>
  • 35. Archetypes • Templates for Maven projects • Descriptor XML files +Velocity templates • To create a Maven project: mvn archetype:generate -DgroupId=tr.org.bimo -DartifactId=sampleApp - Dversion=1.0-SNAPSHOT -DarchetypeGroupId=org.apache.maven.archetypes - DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.0
  • 36. Let’s create a 
 Maven Project with an archetype • By using an archetype from JBOSS repository • https://repository.jboss.org/nexus/content/ repositories/releases/archetype-catalog.xml • We will have Domain classes, Web Pages, in memory database, REST services and etc. (G:A:V) org.jboss.spring.archetyes : jboss-spring-mvc-archetype : 1.0.0.Final
  • 38. A : A : 1.0 B : B : 1.0C : C : 1.0 B : B : 2.0 commons-logging commons-logging 1.0.1 commons-logging commons-logging 1.1.1 commons-logging commons-logging 1.1.1 D : D : 1.0 commons-logging commons-logging 1.0.4 Which B will Maven choose? B:2.0 the highest one? G:A:V
  • 39. A : A : 1.0 B : B : 1.0C : C : 1.0 B : B : 2.0 commons-logging commons-logging 1.0.1 commons-logging commons-logging 1.1.1 commons-logging commons-logging 1.1.1 D : D : 1.0 commons-logging commons-logging 1.0.4 Maven will choose 
 the closest one.
  • 40. A : A : 1.0 B : B : 1.0C : C : 1.0 B : B : 2.0 commons-logging commons-logging 1.0.1 commons-logging commons-logging 1.1.1 commons-logging commons-logging 1.1.1 D : D : 1.0 commons-logging commons-logging 1.0.4 Which commons-logging? ?? ? ?
  • 41. A : A : 1.0 B : B : 1.0C : C : 1.0 B : B : 2.0 commons-logging commons-logging 1.0.1 commons-logging commons-logging 1.1.1 commons-logging commons-logging 1.1.1 D : D : 1.0 commons-logging commons-logging 1.0.4 The Sequential first at the same distance…
  • 42. The Final Graph… A : A : 1.0 B : B : 1.0C : C : 1.0 commons-logging commons-logging 1.0.4 D : D : 1.0
  • 43. Question: Project A will work in the end 
 OR not? A : A : 1.0 B : B : 1.0C : C : 1.0 commons-logging commons-logging 1.0.4 D : D : 1.0
  • 46. Aggregation ProjectA ProjectB ProjectC <<depends>> <<depends>> root $ cd ProjectC projectC $ mvn compile projectC $ cd .. root $ cd ProjectB projectB $ mvn compile projectB $ cd .. root $ cd ProjectA projectA $ mvn compile } 8 lines !!!
  • 47. Aggregation modulesapp ProjectA ProjectB ProjectC <<module>> <<module>> <<module>> root $ cd modulesapp modulesapp $ mvn compile modulesapp: <project> <modelVersion>4.0.0</modelVersion> <groupId>tr.org.bimo</groupId> <artifactId>modulesapp</artifactId> <packaging>pom</packaging> <version>1.0</version> <name>modulesapp</name> <modules> <module>projectA</module> <module>projectB</module> <module>projectC</module> </modules> </project>
  • 48. Question here is: With mvn compile which module will compile first? <modules> <module>projectA</module> <module>projectB</module> <module>projectC</module> </modules>
  • 49. Repositories • To manage build artefacts and dependencies • local or remote repositories • Can store jar, war, ear, ejb, rar .... • Maven looks to at least 2 repository if none specified 
 - local one (under user home)
 - http://repo.maven.apache.org/maven2 
 (defined in uber-pom) • Release & Snapshot repositories
  • 50. Repositories <repository> <id>jboss-repo</id> <name>The Release JBoss maven repo</name> <url>http://repository.jboss.org/maven2</url> <releases> <enabled>true</enabled> </releases> </repository> <repository> <id>jboss-snapshot-repo</id> <name>The Snapshot JBoss maven repo</name> <url>http://snapshots.jboss.org/maven2</url> <snapshots> <enabled>true</enabled> </snapshots> </repository>
  • 51. Plugins • Plugin-oriented Architecture
 plugin for even compiling the code.. • A maven artefact w/ descriptor (plugin.xml) and one or more MOJOs • A MOJO is a Maven plain Old Java Object. Each mojo is an executable goal in Maven, and a plugin is a distribution of one or more related MOJOs. • In short, a MOJO is a maven goal, to extend functionality not already found in Maven. • Plexus as its IoC. (Guice also introduced with version 3.x)
 Why not Spring? • List of plugins supported by Maven Project.
 https://maven.apache.org/plugins
  • 52. Plugin Development <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>tr.org.bimo</groupId> <artifactId>hello-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> <packaging>maven-plugin</packaging> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.2</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
  • 54. Plugin Development Mojo Code import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; @Mojo( name = "sayhi") public class GreetingMojo extends AbstractMojo { public void execute() throws MojoExecutionException { getLog().info( "Hello world." ); } }
  • 56. What we did w/ plugins in PrimeFaces • Component Class • Tag Handler Class • Declare Component,Tag, Renderer classes in faces-config.xml • Declare facelet tag definition • Declare tld tag definition • maven-jsf-plugin • plugin available @ 
 http://repository.primefaces.org/org/primefaces/maven-jsf-plugin
  • 57. settings.xml • Maven provides 2 settings file, • Local settings.xml at %USER_HOME%/.m2/settings.xml • Global settings.xml at %M2_HOME%/conf/settings.xml • These files are not bundled with Maven project and don’t get distributed. • If both files exist, their contents get merged. • Local settings.xml overrides the global one.
  • 58. And not to forget that… Maven is our precious…