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
82
Intro to NoSQL & MongoDB
justin
1
78
StackUp: MongoDB Cloud Manager
justin
0
190
Robotlegs 2.0
justin
1
140
Other Decks in Technology
See All in Technology
リリース2ヶ月で収益化した話
kent_code3
1
190
Strands Agents & Bedrock AgentCoreを1分でおさらい
minorun365
PRO
6
240
Claude Codeが働くAI中心の業務システム構築の挑戦―AIエージェント中心の働き方を目指して
os1ma
9
1.5k
モバイルゲームの開発を支える基盤の歩み ~再現性のある開発ラインを量産する秘訣~
qualiarts
0
1.1k
LLMをツールからプラットフォームへ〜Ai Workforceの戦略〜 #BetAIDay
layerx
PRO
1
870
【CEDEC2025】大規模言語モデルを活用したゲーム内会話パートのスクリプト作成支援への取り組み
cygames
PRO
2
770
Agent Development Kitで始める生成 AI エージェント実践開発
danishi
0
120
Oracle Cloud Infrastructure:2025年7月度サービス・アップデート
oracle4engineer
PRO
1
120
Amazon Q Developerを活用したアーキテクチャのリファクタリング
k1nakayama
2
190
Amazon Q と『音楽』-ゲーム音楽もAmazonQで作成してみた感想-
senseofunity129
0
110
ビジネス文書に特化した基盤モデル開発 / SaaSxML_Session_2
sansan_randd
0
260
Segment Anything Modelの最新動向:SAM2とその発展系
tenten0727
0
430
Featured
See All Featured
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Code Review Best Practice
trishagee
69
19k
Faster Mobile Websites
deanohume
308
31k
Music & Morning Musume
bryan
46
6.7k
Unsuck your backbone
ammeep
671
58k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
Optimizing for Happiness
mojombo
379
70k
Practical Orchestrator
shlominoach
190
11k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.8k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
283
13k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.5k
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.