Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Maven: a forty five minute crash course
Search
justin j. moses
November 16, 2011
Technology
6
1.5k
Maven: a forty five minute crash course
A look at how Maven, the Java project management tool, operates.
justin j. moses
November 16, 2011
Tweet
Share
More Decks by justin j. moses
See All by justin j. moses
The Sound of Music
justin
0
79
Intro to NoSQL & MongoDB
justin
1
74
StackUp: MongoDB Cloud Manager
justin
0
180
Robotlegs 2.0
justin
1
140
Other Decks in Technology
See All in Technology
[AWS JAPAN 生成AIハッカソン] Dialog の紹介
yoshimi0227
0
150
分布で見る効果検証入門 / ai-distributional-effect
cyberagentdevelopers
PRO
4
700
Oracle Cloud Infrastructureデータベース・クラウド:各バージョンのサポート期間
oracle4engineer
PRO
27
12k
生成AIと知識グラフの相互利用に基づく文書解析
koujikozaki
1
140
AWS re:Inventを徹底的に楽しむためのTips / Tips for thoroughly enjoying AWS re:Invent
yuj1osm
1
570
顧客が本当に必要だったもの - パフォーマンス改善編 / Make what is needed
soudai
24
6.8k
フルカイテン株式会社 採用資料
fullkaiten
0
36k
Product Engineer Night #6プロダクトエンジニアを育む仕組み・施策
hacomono
PRO
1
470
Shift-from-React-to-Vue
calm1205
3
1.3k
CyberAgent 生成AI Deep Dive with Amazon Web Services / genai-aws
cyberagentdevelopers
PRO
1
480
「視座」の上げ方が成人発達理論にわかりやすくまとまってた / think_ perspective_hidden_dimensions
shuzon
2
5.1k
ABEMA のコンテンツ制作を最適化!生成 AI x クラウド映像編集システム / abema-ai-editor
cyberagentdevelopers
PRO
1
180
Featured
See All Featured
Optimising Largest Contentful Paint
csswizardry
33
2.9k
Why You Should Never Use an ORM
jnunemaker
PRO
53
9k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
27
790
Statistics for Hackers
jakevdp
796
220k
The Language of Interfaces
destraynor
154
24k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
A designer walks into a library…
pauljervisheath
202
24k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.2k
Making the Leap to Tech Lead
cromwellryan
132
8.9k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
250
21k
Code Reviewing Like a Champion
maltzj
519
39k
Transcript
MAV EN a forty five minute crash course
1. definition
Maven is a build automation tool.
It’s built in Java and lives under the Apache umbrella,
(∴ still new to Flex developers)
it promotes convention over configuration
and, it is hierarchical.
Everything builds via a Project Object Model (POM): aka the
blueprint.
A build generates one or more artifacts. (Typically one artifact
per POM)
Artifacts are classified by groupId, artifactId, packaging (type) and version.
Versions stamped with SNAPSHOT are treated as such.
Artifacts are filed away in repositories using: /[groupId]/[artifactId]/[version]/[artifactId]-[version].[ext] eg. /org/sonatype/flexmojos/4.0-SNAPSHOT/flexmojos-4.0-SNAPSHOT.swc
2. building
A goal is a single action.
A phase is a collection of goals. [M:M]
A lifecycle is a sequence of phases (upto & including).
The odd couple: clean & install. > mvn clean install
The packaging (JAR, SWC, etc) typically defines the goals within
each phase.
In general, the default lifecycle involves the following phases: ▪
validate ▪ compile ▪ test ▪ package ▪ integration-test ▪ verify ▪ install ▪ deploy
In addition, plugins provide goals and can bind them to
phases. eg. > mvn compiler:compile compiler:testCompile
Plugins include compiler, install, scm, release, javadoc, eclipse, etc.
3. dependencies
Dependencies are hosted in repositories.
Each install of Maven has a repository. (~/.m2 is your
new best friend).
In order to add new dependencies to your repository, you
can simply > mvn install:install-file
You add references to repositories either in your POM or
in your settings.xml file.
When building, if a dependency is missing, Maven will try
to download it from an upstream repository.
How are dependencies shared across repositories? Nexus.
Nexus allows an organisation to share artifacts both internally and
externally.
It has out-of-the-box support for both snapshot and release repositories.
So, what about dependencies on teh internez?
Nexus will proxy to other external Nexus repositories.
If the dependency isn’t hosted - there’s a 3rd Party
repo that you can upload into.
4. configuration
In order to build multiple artifacts, create modules for each
artifact and one parent POM.
Maven can also create IDE projects from the POM. (never
check in a .project file or dependency again)
It also allows you to create archetypes as new project
templates.
You can use profiles to customize the build. They can
activate based on environment &/or set conditions.
5. denouement
Maven can be hours of endless frustration, yet somehow it’s
all worth it.
fin.