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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
justin j. moses
November 16, 2011
Technology
1.5k
6
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Maven: a forty five minute crash course
A look at how Maven, the Java project management tool, operates.
justin j. moses
November 16, 2011
More Decks by justin j. moses
See All by justin j. moses
The Sound of Music
justin
0
100
Intro to NoSQL & MongoDB
justin
1
99
StackUp: MongoDB Cloud Manager
justin
0
210
Robotlegs 2.0
justin
1
160
Other Decks in Technology
See All in Technology
アップデートで何が変わった?デモで学んで使いこなすIBM Bob2.0
muehara
0
150
[2026-07-15] AI Ready なはずだったアーキテクチャと、見えてきた課題・次に目指す状態
wxyzzz
9
4k
Foxgloveについて 実際にExtensionを開発して公開するまでの話 / About Foxglove: The Story of Developing and Releasing an Extension
ry0_ka
0
300
発表と総括 / Presentations and Summary
ks91
PRO
0
140
知らん間に、回ってる
ming_ayami
0
730
凡エンジニアがこの先生きのこるためには。〜TypeScript完全に理解したい〜
alchemy1115
2
310
最適な自走を最小限の支援で — M&Aで拡大する組織で少人数SREが挑んだ1年 / SRE NEXT 2026
genda
0
1.5k
Genie Ontologyは銀の弾丸かを考える / Is Genie Ontology a Silver Bullet?
nttcom
0
410
Making sense of Google’s agentic dev tools
glaforge
1
280
穢れた技術選定について
watany
17
5.6k
大量データに対しても、生成AIを用いてリーズナブルにデータ加工をしたい!Databricksのai_queryについて調べてみた
kamoshika
1
220
ガバナンスの「ちょうどいい落とし所」を探れ!開発スピードを妨げない運用判断の勘所 / SRE NEXT 2026
genda
1
250
Featured
See All Featured
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
62
45k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
How to Talk to Developers About Accessibility
jct
2
400
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
390
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Become a Pro
speakerdeck
PRO
31
6k
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
120k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
6k
Google's AI Overviews - The New Search
badams
0
1.1k
Why Our Code Smells
bkeepers
PRO
340
58k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1.2k
Lightning Talk: Beautiful Slides for Beginners
inesmontani
PRO
2
610
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.