Apache Maven

Apache Maven
Developer(s)The Apache Software Foundation
Initial release13 July 2004; 20 years ago (2004-07-13)
Stable release
3.9.9[1] Edit this on Wikidata / 18 August 2024; 4 months ago (18 August 2024)
Repository
Written inJava
TypeBuild tool
LicenseApache License 2.0
Websitemaven.apache.org

Maven is a build automation tool used primarily for Java projects. Maven can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. The Maven project is hosted by The Apache Software Foundation, where it was formerly part of the Jakarta Project.

Maven addresses two aspects of building software: how software is built and its dependencies. Unlike earlier tools like Apache Ant, it uses conventions for the build procedure. Only exceptions need to be specified. An XML file describes the software project being built, its dependencies on other external modules and components, the build order, directories, and required plug-ins. It comes with pre-defined targets for performing certain well-defined tasks such as compilation of code and its packaging. Maven dynamically downloads Java 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 downloaded artifacts 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. A C/C++ native plugin is maintained for Maven 2.[3]

Alternative technologies like Gradle and sbt as build tools do not rely on XML, but keep the key concepts Maven introduced. With Apache Ivy, a dedicated dependency manager was developed as well that also supports Maven repositories.[4]

Apache Maven has support for reproducible builds.[5][6]

History

The number of artifacts on Maven's central repository has grown rapidly

Maven was created by Jason van Zyl in 2002 and began as a sub-project of Apache Turbine. In 2003 Maven was accepted as a top level Apache 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 include Ruby (already in private prototype by Jason van Zyl), YAML, and Groovy. 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 beta development (as of May 2024).

Syntax

Maven projects are configured using a Project Object Model (POM) in a pom.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 the JUnit library. However, that is already enough for building the project and running the unit tests associated with the project. Maven accomplishes this by embracing the idea of Convention over Configuration, that is, Maven provides default values for the project's configuration.

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

A directory structure for a Java project auto-generated by Maven
Directory name Purpose
project home Contains the pom.xml and all subdirectories.
src/main/java Contains the deliverable Java source code for the project.
src/main/resources Contains the deliverable resources for the project, such as property files.
src/test/java Contains the testing Java sourcecode (JUnit or TestNG test cases, for example) for the project.
src/test/resources Contains resources necessary for testing.

The command mvn package will compile all the Java files, run any tests, and package the deliverable code and resources into target/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 with Ant and make, in which one writes imperative procedures for doing the aforementioned tasks.

Design

Project Object Model

A Project Object Model (POM) [7] 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 as plugins. 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[8] by default. The Super POM provides default configuration, such as default source directories, default plugins, and so on.

Plug-ins

Most of Maven's functionality is in plug-ins. A plugin provides a set of goals that can be executed using the command mvn [plugin-name]:[goal-name]. For example, a Java project can be compiled with the compiler-plugin's compile-goal[9] by running mvn compiler:compile.

There are Maven plugins for building, testing, source control management, running a web server, generating Eclipse project files, and much more.[10] Plugins are introduced and configured in a <plugins>-section of a pom.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 article Automate development and management of cloud virtual machines.[11]

Build lifecycles

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

  • 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 goal compiler:compile is associated with the compile phase, while the goal surefire:test is associated with the test phase. When the mvn test command is executed, Maven runs all goals associated with each of the phases up to and including the test phase. In such a case, Maven runs the resources:resources goal associated with the process-resources phase, then compiler:compile, and so on until it finally runs the surefire: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 command mvn install. By default, Maven packages the POM file in generated JAR and WAR files. Tools like diet4j[13] 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

A central feature in Maven is dependency 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, the Hibernate 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 (called transitive dependencies) and store them in the user's local repository. Maven 2 Central Repository[2] 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, Maven relies on a convention on how to define projects and on the list of work-flows that are generally supported in all projects.[14]

There are search engines such as The Central Repository 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 command mvn 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

Add-ons to several popular integrated 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 of SCM systems in IDEs when using Maven.[16][17][18]

See also

References

  1. ^ "Release Notes - Maven - Version 3.9.9". 18 August 2024. Retrieved 5 September 2024.
  2. ^ a b "Index of /maven2/". Archived from the original on 2018-09-17. Retrieved 2009-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. ^ POM Reference
  8. ^ Super POM
  9. ^ Punzalan, Edwin. "Apache Maven Compiler Plugin – Introduction".
  10. ^ Marbaise, Brett Porter Jason van Zyl Dennis Lundberg Olivier Lamy Benson Margulies Karl-Heinz. "Maven – Available Plugins".
  11. ^ Amies, Alex; Zou P X; Wang Yi S (29 Oct 2011). "Automate development and management of cloud virtual machines". IBM DeveloperWorks. IBM.
  12. ^ Porter, Brett. "Maven – Introduction to the Build Lifecycle".
  13. ^ "diet4j - put Java JARs on a diet, and load maven modules as needed".
  14. ^ "Maven: The Complete Reference". Sonatype. Archived from the original on 21 April 2013. Retrieved 11 April 2013.
  15. ^ The Central Repository Search Engine
  16. ^ "maven.apache.org/eclipse-plugin.html". Archived from the original on May 7, 2015.
  17. ^ "IntelliJ IDEA :: Features". Archived from the original on 2015-05-24. Retrieved 2009-09-02.
  18. ^ "MavenBestPractices - NetBeans Wiki". Archived from the original on 2018-01-14. Retrieved 2009-09-02.

Further reading

Read other articles:

Chief of the Miami people (c. 1747 – July 14, 1812) Little TurtleMihšihkinaahkwaLithograph of Little Turtle, reputedly based upon a lost portrait by Gilbert Stuart that was destroyed when the British burned Washington, D.C., in 1814.[1]War chief of the Miami people Personal detailsBorn1747/1752Miami territory, Illinois Country(modern Whitley County, Indiana, United States)DiedJuly 14, 1812Fort Wayne, Indiana, United StatesMilitary serviceAllegianceMiami peopleBattles/warsLa Balme's...

 

Association football team in Orkney, Scotland OrkneyAssociationOrkney Amateur Football AssociationHead coachKarl AdamsonHome stadiumThe Pickaquoy Centre, formerly Bignold Park First colours Second colours First international Orkney 2–3 Shetland (Kirkwall, Orkney; 7 May 1919)Biggest win Orkney 7–1 Shetland (Kirkwall, Orkney; 30 June 1972)Biggest defeat Jersey 12–0 Orkney (Douglas, Isle of Man; 8 July 2001) Orkney representative football team in 1968 against ...

 

Battle between Filipino and American forces during the Philippine–American War Battle of Zapote Bridge redirects here. For the battle which was part of the Philippine Revolution, see Battle of Zapote Bridge (1897). Battle of Zapote RiverPart of the Philippine–American WarThe reconnected Zapote Bridge in 1899 being guarded by an American soldier after the battle on June 13, 1899. One span of the bridge was removed by the locals, substituted with a wooden span, which was burned down before ...

EccellenzaSport Calcio TipoClub FederazioneFIGC Paese Italia OrganizzatoreLega Nazionale Dilettanti Aperturafine agosto Partecipanti500 squadre (29 gironi) su base regionale Formula29 gironi all'italiana, eventuali play-off e play-out regionali, play-off nazionali Promozione inSerie D Retrocessione in Promozione Sito Internetwww.lnd.it StoriaFondazione1991 Numero edizioni32 Ultima edizioneEccellenza 2022-2023 Edizione in corsoEccellenza 2023-2024 Modifica dati su Wikidata · Manuale...

 

Un bus de la Metropolitan Transportation Authority. L'infrastructure des transports de la ville de New York est l'une des plus complexes des États-Unis, toutes agglomérations confondues. En la matière, la mégapole détient en effet des records: depuis le métro le plus étendu du monde pour ce qui est du kilométrage de voies, jusqu'au pont suspendu le plus long d'Amérique du Nord, en passant par son emblématique réseau de taxis jaunes, ses 112 000 cyclistes quotidiens, le tout premier...

 

Questa voce sull'argomento calciatori irlandesi è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Segui i suggerimenti del progetto di riferimento. Roy O'Donovan Nazionalità  Irlanda Altezza 177 cm Calcio Ruolo Ala Squadra  Sydney Olympic CarrieraGiovanili 2001-2004 Coventry CitySquadre di club1 2005-2007 Cork City74 (31)2007-2010 Sunderland17 (0)2008-2009→  Dundee Utd11 (1)2009→  Blackpool12 (0)2009→  Sout...

Diagramma di paragone tra la determinazione dei prezzi nelle economie capitalista e dirigista (pianificata)Un'economia pianificata è un sistema economico in cui gli investimenti, la produzione e l'allocazione dei beni capitali avvengono secondo piani economici e di produzione. Un'economia pianificata può utilizzare forme di pianificazione economica centralizzata o di comando,[1] decentrata e partecipativa.[2][3] Il livello di centralizzazione o decentramento nel proc...

 

  ميّز عن الذيبية (القصيم). تحتاج هذه المقالة إلى الاستشهاد بمصادر إضافية لتحسين وثوقيتها. فضلاً ساهم في تطوير هذه المقالة بإضافة استشهادات من مصادر موثوق بها. من الممكن التشكيك بالمعلومات غير المنسوبة إلى مصدر وإزالتها. (يناير 2021)Learn how and when to remove this message الذيبية تقسيم إ...

 

  هذه المقالة عن حي الشابسوغ. لقبيلة الشابسوغ، طالع الشابسوغ. حي الشابسوغ حي الشابسوغ حي يقع في قلب عمان عاصمة الأردن، يعتبر أقدم وأول أحياء عمان منذ إعادة إحياء المدينة في أواسط القرن التاسع عشر من قبل المهاجرون الشراكسة، يقع الحي في المنطقة الممتدة ما بين سفح جبل الق...

Motor vehicle Piaggio ApeOverviewManufacturerPiaggioAlso calledVespaCarTriVespaProduction1948–presentAssemblyItaly: Pontedera, PisaIndia: Pune, MaharashtraDesignerPiaggioBody and chassisClassSubmicrovanBody styleVan, pickup, autorickshawPlatformVs67MP5DimensionsWheelbase159 cm (Ape 500)Length249 cm (Ape 500 short)Width126 cm (Ape 500 short)Height155 cm (Ape 500 short) The Piaggio Ape (pronounced [ˈpjaddʒo ˈaːpe]; ape being Italian for 'bee'),[1][2&#...

 

John Tyler Presiden Amerika Serikat 10Masa jabatan4 April 1841 – 4 Maret 1845Wakil PresidenTidak adaPendahuluWilliam Henry HarrisonPenggantiJames K. PolkWakil Presiden Amerika SerikatMasa jabatan4 Maret 1841 – 4 April 1841PresidenWilliam Henry HarrisonPendahuluRichard Mentor JohnsonPenggantiGeorge DallasGubernur Virginia 23Masa jabatan10 Desember 1825 – 4 Maret1827PendahuluJames PleasantsPenggantiWilliam Branch GilesSenator Amerika Serikat dari Vir...

 

Кримський обласний комітет Комуністичної партії України — орган управління Кримською обласною партійною організацією КП України (1954–1991 роки) та Кримською обласною партійною організацією ВКП(б) (1920–1954 роки). Кримська область увійшла зі складу РРФСР до складу Україн�...

American science fiction illustrator (1921–1996) For other people named Richard Powers, see Richard Powers (disambiguation). This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Richard M. Powers – news · newspapers · books · scholar · JSTOR (April 2013) (Learn how and when to remove this message) Richard M. Po...

 

For the community in Kern County, see Indian Wells, Kern County, California. For the former town in Imperial County, see Indian Wells, Imperial County, California. City in California, United StatesIndian WellsCityCity limit as seen from Palm Desert, CaliforniaNickname: I.W.Location of Indian Wells in Riverside County, CaliforniaIndian WellsLocation in the United StatesCoordinates: 33°43′07″N 116°18′30″W / 33.71861°N 116.30833°W / 33.71861; -116.30833&#...

 

Oneonta meeting portage train at Upper Cascades, Wash. Terr., 1867 History NameOneonta OwnerOregon Steam Navigation Company RouteColumbia River and lower Willamette River to Portland, Oregon BuilderSamuel Forman Completed1863, Celilo, Oregon[1] Out of service1877[1] FateDismantled[1] or abandoned[2] General characteristics Tonnage497-tons Length150 ft (46 m) Installed powersteam Propulsionsidewheels The Oneonta was a sidewheel steamboat that operated...

Inner Mongolia railway station Fushengzhuang railway station is a station of Jingbao Railway in Inner Mongolia, its postal code is 012311.[1] The station was first constructed in 1922 as part of the Tangshan-Baotou railway. The station has a distance of 587 kilometers (365 miles) from the Beijing railway station, and 243 kilometers (151 miles) from the Baotou railway station. The next westbound station is Sandaoying railway station 7 kilometers (4.3 miles) away, while the next eastbou...

 

Jón Baldvin HannibalssonJón Baldvin Hannibalsson nel 2011 Ministro per gli affari esteri dell'IslandaDurata mandato28 settembre 1988 –23 aprile 1995 Capo del governoSteingrímur Hermannsson Davíð Oddsson PredecessoreSteingrímur Hermannsson SuccessoreHalldór Ásgrímsson Ministro delle finanze dell'IslandaDurata mandato8 luglio 1987 –28 settembre 1988 Capo del governoÞorsteinn Pálsson PredecessoreÞorsteinn Pálsson SuccessoreÓlafur Ragnar Grímsson Dat...

 

First issue of La Continental Obrera, organ of the ACAT. The Continental American Workers Association (Spanish: Asociación Continental Americana de Trabajadores, ACAT) was an anarcho-syndicalist trade union confederation that functioned as the Latin American branch of the International Workers' Association (Spanish: Asociación Internacional de los Trabajadores, IWA-AIT). In May 1929 the Argentine Regional Workers' Federation (Spanish: Federación Obrera Regional Argentina, FORA) convened a ...

Albuquerque, New MexicoCityFiesta Balon, Pusat AlbuquerquePusat Transportasi AlvaradoTram udara Puncak SandiaGereja San Felipe de Neri, Rio Grande BenderaJulukan: ABQ, Kota Duke, Burque, The 505, A BesarLetak di negara bagian New MexicoLua error in Modul:Location_map at line 537: Tidak dapat menemukan definisi peta lokasi yang ditentukan. Baik "Modul:Location map/data/USA New Mexico" maupun "Templat:Location map USA New Mexico" tidak ada.Koordinat: 35°06′39″N 106...

 

Strýtan Vent FieldLocationAtlantic OceanCoordinates65°49′18″N 18°07′24″W / 65.82167°N 18.12333°W / 65.82167; -18.12333Max. elevation−70 metres (−230 ft)Min. elevation−16 metres (−52 ft) The Strýtan vent field is a hydrothermal vent field located in the northern Atlantic Ocean at a depth of 16–70 metres (52–230 ft). It is located within Iceland's northern fjord Eyjafördur near Akureyri.[1] As of 2024, it is the only know...