Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Apache Maven

From Wikipedia, the free encyclopedia
Software tool for managing build dependencies
Apache Maven
DeveloperThe Apache Software Foundation
Initial release13 July 2004; 21 years ago (2004-07-13)
Stable release
3.9.12[1] Edit this on Wikidata / 16 December 2025; 2 months ago (16 December 2025)
Written inJava
TypeBuild tool
LicenseApache License 2.0
Websitemaven.apache.org
Repository

Maven is abuild automation tool used primarily forJava projects. Maven can also be used to build and manage projects written inC#,Ruby,Scala, and other languages. The Maven project is hosted byThe Apache Software Foundation, where it was formerly part of theJakarta Project.

Maven addresses two aspects of building software: how software isbuilt and its dependencies. Unlike earlier tools likeApache Ant, it uses conventions for the build procedure. Only exceptions need to be specified. AnXML file describes the software project being built, its dependencies on other external modules and components, the build order, directories, and requiredplug-ins. It comes with pre-defined targets for performing certain well-defined tasks such as compilation of code and its packaging. Maven dynamically downloadsJava libraries and Maven plug-ins from one or more repositories such as the Maven 2 Central Repository, and stores them in a local cache.[2] This local cache of downloadedartifacts can also be updated with artifacts created by local projects. Public repositories can also be updated.

Maven is built using a plugin-based architecture that allows it to make use of any application controllable through standard input. AC/C++ native plugin is maintained for Maven 2.[3]

Alternative technologies likeGradle andsbt as build tools do not rely onXML, but keep the key concepts Maven introduced. WithApache Ivy, a dedicated dependency manager was developed as well that also supports Maven repositories.[4]

Apache Maven has support forreproducible builds.[5][6]

History

[edit]
The number of artifacts on Maven's central repository has grown rapidly in the past

Maven was created by Jason van Zyl in 2002 and began as a sub-project ofApache Turbine. In 2003 Maven was accepted as a top levelApache Software Foundation project.

Version history:

  • Version 1 - July 2004 - first critical milestone release (now at end of life).
  • Version 2 - October 2005 - after about six months in beta cycles (now at end of life).
  • Version 3 - October 2010 - remains mostly backwards compatible with Maven 2 projects. Changes included re-working core Project Builder and support for parallel builds. The re-working of the core decoupled file-based and in-memory representation and allowed add-ons to leverage non-XML based project definition files. Languages suggested includeRuby (already in private prototype by Jason van Zyl),YAML, andGroovy. The parallel build feature leverages a configurable number of cores on a multi-core machine and especially suited for large multi-module projects.
  • Version 4 - currently in Release Candidate phase (RC4 was released in June 2025).[7]

Syntax

[edit]

Maven projects are configured using aProject Object Model (POM) in apom.xml file.

Example file:

<project><!-- model version is always 4.0.0 for Maven 2.x POMs --><modelVersion>4.0.0</modelVersion><!-- project coordinates, i.e. a group of values which uniquely identify this project --><groupId>com.mycompany.app</groupId><artifactId>my-app</artifactId><version>1.0</version><!-- library dependencies --><dependencies><!-- The coordinates of a required library.           The scope is 'test' to indicate the library           is only used for running tests. --><dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter-engine</artifactId><version>5.9.1</version><scope>test</scope></dependency></dependencies></project>

This POM defines a unique identifier for the project (coordinates) and a single dependency on theJUnit library. However, that is already enough for building the project and running theunit tests associated with the project. Maven accomplishes this by embracing the idea ofConvention over Configuration, that is, Maven provides default values for the project's configuration.

The directory structure of a normalidiomatic Maven project has the following directory entries:

A directory structure for a Java project auto-generated by Maven
Directory namePurpose
project homeContains thepom.xml and all subdirectories.
src/main/javaContains the deliverable Java source code for the project.
src/main/resourcesContains the deliverable resources for the project, such as property files.
src/test/javaContains the testing Java sourcecode (JUnit or TestNG test cases, for example) for the project.
src/test/resourcesContains resources necessary for testing.

The commandmvn package will compile all the Java files, run any tests, and package the deliverable code and resources intotarget/my-app-1.0.jar (assuming the artifactId is my-app and the version is 1.0.)

Using Maven, the user provides only configuration for the project, while the configurable plug-ins do the actual work of compiling the project, cleaning target directories, running unit tests, generating API documentation and so on. In general, users should not have to write plugins themselves. Contrast this withAnt andmake, in which one writes imperative procedures for doing the aforementioned tasks.

Design

[edit]

Project Object Model

[edit]

A Project Object Model (POM)[8] provides all the configuration for a single project. General configuration covers the project's name, its owner and its dependencies on other projects. One can also configure individual phases of the build process, which are implemented asplugins. For example, one can configure the compiler-plugin to use Java version 1.5 for compilation, or specify packaging the project even if some unit tests fail.

Larger projects should be divided into several modules, or sub-projects, each with its own POM. One can then write a root POM through which one can compile all the modules with a single command. POMs can also inherit configuration from other POMs. All POMs inherit from the Super POM[9] by default. The Super POM provides default configuration, such as default source directories, default plugins, and so on.

Plug-ins

[edit]

Most of Maven's functionality is inplug-ins. A plugin provides a set of goals that can be executed using the commandmvn [plugin-name]:[goal-name]. For example, a Java project can be compiled with the compiler-plugin's compile-goal[10] by runningmvn compiler:compile.

There are Maven plugins for building, testing, source control management, running a web server, generatingEclipse project files, and much more.[11] Plugins are introduced and configured in a <plugins>-section of apom.xml file. Some basic plugins are included in every project by default, and they have sensible default settings.

However, it would be cumbersome if the archetypal build sequence of building, testing and packaging a software project required running each respective goal manually:

  • mvn compiler:compile
  • mvn surefire:test
  • mvn jar:jar

Maven's lifecycle concept handles this issue.

Plugins are the primary way to extend Maven. Developing a Maven plugin can be done by extending the org.apache.maven.plugin.AbstractMojo class. Example code and explanation for a Maven plugin to create a cloud-based virtual machine running an application server is given in the articleAutomate development and management of cloud virtual machines.[12]

Build lifecycles

[edit]

The build lifecycle is a list of namedphases that can be used to give order to goal execution. One of Maven's three standard lifecycles is thedefault lifecycle, which includes the following phases, performed in the order listed:[13]

  • validate
  • generate-sources
  • process-sources
  • generate-resources
  • process-resources
  • compile
  • process-test-sources
  • process-test-resources
  • test-compile
  • test
  • package
  • install
  • deploy

Goals provided by plugins can be associated with different phases of the lifecycle. For example, by default, the goalcompiler:compile is associated with thecompile phase, while the goalsurefire:test is associated with thetest phase. When themvn test command is executed, Maven runs all goals associated with each of the phases up to and including thetest phase. In such a case, Maven runs theresources:resources goal associated with theprocess-resources phase, thencompiler:compile, and so on until it finally runs thesurefire:test goal.

Maven also has standard phases for cleaning the project and for generating a project site. If cleaning were part of the default lifecycle, the project would be cleaned every time it was built. This is clearly undesirable, so cleaning has been given its own lifecycle.

Standard lifecycles enable users new to a project the ability to accurately build, test and install every Maven project by issuing the single commandmvn install. By default, Maven packages the POM file in generated JAR and WAR files. Tools like diet4j[14] can use this information to recursively resolve and run Maven modules at run-time without requiring an "uber"-jar that contains all project code.

Dependencies

[edit]

A central feature in Maven isdependency management. Maven's dependency-handling mechanism is organized around a coordinate system identifying individual artifacts such as software libraries or modules. The POM example above references the JUnit coordinates as a direct dependency of the project. A project that needs, say, theHibernate library simply has to declare Hibernate's project coordinates in its POM. Maven will automatically download the dependency and the dependencies that Hibernate itself needs (calledtransitive dependencies) and store them in the user's local repository. MavenCentral Repository[15] is used by default to search for libraries, but one can configure the repositories to be used (e.g., company-private repositories) within the POM.

The fundamental difference between Maven and Ant is that Maven's design regards all projects as having a certain structure and a set of supported task work-flows (e.g., getting resources from source control, compiling the project, unit testing, etc.). While most software projects in effect support these operations and actually do have a well-defined structure, Maven requires that this structure and the operation implementation details be defined in the POM file. Thus, Mavenrelies on a convention on how to define projects and on the list of work-flows that are generally supported in all projects.[16]

The Central Repository has a search engine,[15] which can be used to find out coordinates for different open-source libraries and frameworks.

Projects developed on a single machine can depend on each other through the local repository. The local repository is a simple folder structure that acts both as a cache for downloaded dependencies and as a centralized storage place for locally built artifacts. The Maven commandmvn install builds a project and places its binaries in the local repository. Then, other projects can utilize this project by specifying its coordinates in their POMs.

Interoperability

[edit]

Add-ons to several popularintegrated development environments (IDE) targeting the Java programming language exist to provide integration of Maven with the IDE's build mechanism and source editing tools, allowing Maven to compile projects from within the IDE, and also to set the classpath for code completion, highlighting compiler errors, etc.

Examples of popular IDEs supporting development with Maven include:

These add-ons also provide the ability to edit the POM or use the POM to determine a project's complete set of dependencies directly within the IDE.

Some built-in features of IDEs are forfeited when the IDE no longer performs compilation. For example, Eclipse's JDT has the ability to recompile a single Java source file after it has been edited. Many IDEs work with a flat set of projects instead of the hierarchy of folders preferred by Maven. This complicates the use ofSCM systems in IDEs when using Maven.[17][18][19]

See also

[edit]

References

[edit]
  1. ^"Release 3.9.12". 16 December 2025. Retrieved17 December 2025.
  2. ^"Index of /maven2/". Archived fromthe original on 2018-09-17. Retrieved2009-04-15.
  3. ^Laugstol, Trygve."MojoHaus Native Maven Plugin".
  4. ^"IBiblio Resolver | Apache Ivy™".
  5. ^"Reproducible/Verifiable Builds - Apache Maven - Apache Software Foundation".cwiki.apache.org.
  6. ^"Reproducible Builds in Java - DZone Java".dzone.com.
  7. ^"Maven Releases History".maven.apache.org.
  8. ^POM Reference
  9. ^Super POM
  10. ^Punzalan, Edwin."Apache Maven Compiler Plugin – Introduction".
  11. ^Marbaise, Brett Porter Jason van Zyl Dennis Lundberg Olivier Lamy Benson Margulies Karl-Heinz."Maven – Available Plugins".
  12. ^Amies, Alex; Zou P X; Wang Yi S (29 Oct 2011)."Automate development and management of cloud virtual machines".IBM DeveloperWorks. IBM.
  13. ^Porter, Brett."Maven – Introduction to the Build Lifecycle".
  14. ^"diet4j - put Java JARs on a diet, and load maven modules as needed".
  15. ^abMaven Central
  16. ^"Maven: The Complete Reference". Sonatype. Archived fromthe original on 21 April 2013. Retrieved11 April 2013.
  17. ^"maven.apache.org/eclipse-plugin.html". Archived fromthe original on May 7, 2015.
  18. ^"IntelliJ IDEA :: Features". Archived fromthe original on 2015-05-24. Retrieved2009-09-02.
  19. ^"MavenBestPractices - NetBeans Wiki". Archived fromthe original on 2018-01-14. Retrieved2009-09-02.

Further reading

[edit]

External links

[edit]
Top-level
projects
Commons
Incubator
Other projects
Attic
Licenses
Retrieved from "https://en.wikipedia.org/w/index.php?title=Apache_Maven&oldid=1333768437"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp