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
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
justin j. moses
November 16, 2011
Technology
1.5k
6
Share
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
94
StackUp: MongoDB Cloud Manager
justin
0
210
Robotlegs 2.0
justin
1
160
Other Decks in Technology
See All in Technology
Unlocking the Apps
pimterry
0
120
JEP 522 Deep Dive - G1 GC同期コスト削減によるスループット向上を徹底検証&解説
tabatad
1
430
オンコールの負荷軽減のためのBits Assistant 活用方法 / How to Use Bits Assistant to Reduce the Workload on On-Call Staff
sms_tech
1
350
なぜハノーバーメッセに行くべきなのか 〜初参加だから語れること〜
tanakaseiya
0
180
Claude code Orchestra
ozakiomumkj
2
730
TypeScript Compiler APIとPHP-Parserを活用し、TypeScriptとPHPで型を共有する
shuta13
0
240
OpenID Connectによるサービス間連携
takesection
0
140
GitHub Copilot CLIでWebアクセシビリティを改善した話
tomokusaba
0
140
形式手法特論:公平性制約の位相的特徴づけ #kernelvm / Kernel VM Study Kansai 12th
ytaka23
1
630
AI駆動開発でなんでもハンズオン環境をつくってみた
yoshimi0227
0
180
JJUG CCC 2026 Spring AI時代の開発こそ標準化を武器に! ― 方式・プロセス・プラットフォームの標準化
s27watanabe
2
630
string地獄を脱出する
sansantech
PRO
1
110
Featured
See All Featured
The SEO identity crisis: Don't let AI make you average
varn
0
480
Marketing Yourself as an Engineer | Alaka | Gurzu
gurzu
0
210
Joys of Absence: A Defence of Solitary Play
codingconduct
1
380
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
230
SEO for Brand Visibility & Recognition
aleyda
0
4.6k
Crafting Experiences
bethany
1
160
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
180
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
820
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
37
6.5k
Agile that works and the tools we love
rasmusluckow
331
21k
Chasing Engaging Ingredients in Design
codingconduct
0
200
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.2k
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.