├── .asf.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ ├── IMPROVEMENT.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── stale.yml │ └── verify-site.yml ├── .gitignore ├── .mvn └── keep-me ├── Jenkinsfile ├── README.md ├── content ├── apt │ ├── archives │ │ └── maven-2.x │ │ │ ├── index.apt │ │ │ └── maven-2.1-architectural-goals.apt │ ├── developers │ │ ├── committer-environment.apt │ │ ├── committer-settings.apt │ │ ├── compatibility-plan.apt │ │ ├── conventions │ │ │ ├── code.apt │ │ │ └── git.apt │ │ ├── dependency-policies.apt │ │ ├── index.apt │ │ ├── release │ │ │ ├── index.apt │ │ │ ├── maven-project-release-procedure.apt │ │ │ ├── parent-pom-release.apt │ │ │ └── pmc-gpg-keys.apt │ │ ├── retirement-plan-plugins.apt │ │ ├── website │ │ │ ├── deploy-component-reference-documentation.apt │ │ │ ├── deploy-maven-website.apt │ │ │ ├── index.apt │ │ │ ├── website-overview.apt │ │ │ └── website-overview.odg │ │ └── welcome-to-new-committers.apt │ ├── docs │ │ ├── 2.0.1 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.10 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.11 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.2 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.3 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.4 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.5 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.6 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.7 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.8 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0.9 │ │ │ └── release-notes.apt.vm │ │ ├── 2.0 │ │ │ └── release-notes.apt.vm │ │ ├── 2.1.0 │ │ │ └── release-notes.apt.vm │ │ ├── 2.2.0 │ │ │ └── release-notes.apt.vm │ │ ├── 2.2.1 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-alpha-3 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-alpha-4 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-alpha-5 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-alpha-6 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-alpha-7 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-beta-1 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-beta-2 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0-beta-3 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0.1 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0.2 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0.3 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0.4 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0.5 │ │ │ └── release-notes.apt.vm │ │ ├── 3.0 │ │ │ └── release-notes.apt.vm │ │ ├── 3.1.0-alpha-1 │ │ │ └── release-notes.apt.vm │ │ ├── 3.1.0 │ │ │ └── release-notes.apt.vm │ │ └── 3.1.1 │ │ │ └── release-notes.apt.vm │ ├── examples │ │ ├── index.apt │ │ ├── injecting-properties-via-settings.apt │ │ └── maven-3-lifecycle-extensions.apt.vm │ ├── guides │ │ ├── development │ │ │ ├── guide-building-maven.apt │ │ │ ├── guide-committer-school.apt │ │ │ ├── guide-documentation-style.apt │ │ │ ├── guide-helping.apt │ │ │ ├── guide-maven-development.apt │ │ │ ├── guide-plugin-documentation.apt.vm │ │ │ ├── guide-testing-development-plugins.apt │ │ │ └── guide-testing-releases.apt │ │ ├── getting-started │ │ │ ├── index.apt │ │ │ ├── maven-in-five-minutes.apt │ │ │ └── windows-prerequisites.apt │ │ ├── index.apt.vm │ │ ├── introduction │ │ │ ├── introduction-to-archetypes.apt │ │ │ ├── introduction-to-dependency-mechanism.apt │ │ │ ├── introduction-to-optional-and-excludes-dependencies.apt │ │ │ ├── introduction-to-plugin-prefix-mapping.apt.vm │ │ │ ├── introduction-to-plugins.apt │ │ │ ├── introduction-to-profiles.apt │ │ │ ├── introduction-to-repositories.apt │ │ │ ├── introduction-to-the-lifecycle.apt │ │ │ ├── introduction-to-the-pom.apt │ │ │ └── introduction-to-the-standard-directory-layout.apt │ │ ├── mini │ │ │ ├── guide-3rd-party-jars-local.apt │ │ │ ├── guide-3rd-party-jars-remote.apt │ │ │ ├── guide-archive-configuration.apt │ │ │ ├── guide-assemblies.apt │ │ │ ├── guide-attached-tests.apt │ │ │ ├── guide-bash-m2-completion.apt │ │ │ ├── guide-building-for-different-environments.apt │ │ │ ├── guide-configuring-maven.apt │ │ │ ├── guide-configuring-plugins.apt │ │ │ ├── guide-creating-archetypes.apt │ │ │ ├── guide-default-execution-ids.apt │ │ │ ├── guide-deployment-security-settings.apt │ │ │ ├── guide-encryption.apt │ │ │ ├── guide-generating-sources.apt │ │ │ ├── guide-http-settings.apt │ │ │ ├── guide-large-scale-centralized-deployments.apt │ │ │ ├── guide-manifest.apt │ │ │ ├── guide-maven-classloading.apt │ │ │ ├── guide-mirror-settings.apt │ │ │ ├── guide-multiple-modules.apt │ │ │ ├── guide-multiple-repositories.apt │ │ │ ├── guide-new-committers.apt │ │ │ ├── guide-proxies.apt │ │ │ ├── guide-releasing.apt │ │ │ ├── guide-relocation.apt │ │ │ ├── guide-repository-ssl.apt │ │ │ ├── guide-reproducible-builds.apt │ │ │ ├── guide-site.apt │ │ │ ├── guide-snippet-macro.apt │ │ │ ├── guide-using-ant.apt │ │ │ ├── guide-using-extensions.apt │ │ │ ├── guide-using-modello.apt │ │ │ ├── guide-using-one-source-directory.apt │ │ │ ├── guide-using-toolchains.apt │ │ │ ├── guide-wagon-providers.apt │ │ │ ├── index.apt.vm │ │ │ └── index.txt │ │ ├── plugin │ │ │ ├── guide-java-plugin-development.apt.vm │ │ │ ├── guide-java-report-plugin-development.apt.vm │ │ │ └── notes.txt │ │ └── suggestions │ │ │ └── non-standard-directories.txt │ ├── maven-features.apt │ ├── plugin-developers │ │ ├── common-bugs.apt │ │ ├── cookbook │ │ │ ├── index.apt │ │ │ └── plexus-plugin-upgrade.apt │ │ ├── index.apt │ │ └── plugin-testing.apt │ ├── plugins │ │ ├── index.apt │ │ └── localization.apt │ ├── pom.apt.vm │ ├── pom │ │ └── index.apt.vm │ ├── repository │ │ ├── central-index.apt │ │ ├── central-metadata.apt │ │ └── guide-central-repository-upload.apt │ ├── run-maven │ │ └── index.apt │ ├── shared │ │ └── index.apt │ ├── skins │ │ └── index.apt │ └── users │ │ ├── getting-help.apt │ │ └── index.apt ├── filtered-resources │ ├── .htaccess │ └── .well-known │ │ ├── atproto-did │ │ └── security.txt ├── markdown │ ├── about.md │ ├── aether.md │ ├── articles.md │ ├── background │ │ ├── history-of-maven.md │ │ └── philosophy-of-maven.md │ ├── code-quality-management.md │ ├── community.md │ ├── configure.md │ ├── developers │ │ ├── conventions │ │ │ ├── github.md │ │ │ └── jira.md │ │ ├── mojo-api-specification.md │ │ ├── release │ │ │ └── maven-core-release.md │ │ └── website │ │ │ └── component-reference-documentation-helper.md │ ├── docs │ │ ├── 3.2.1 │ │ │ └── release-notes.md │ │ ├── 3.2.2 │ │ │ └── release-notes.md │ │ ├── 3.2.3 │ │ │ └── release-notes.md │ │ ├── 3.2.5 │ │ │ └── release-notes.md │ │ ├── 3.3.1 │ │ │ └── release-notes.md │ │ ├── 3.3.3 │ │ │ └── release-notes.md │ │ ├── 3.3.9 │ │ │ └── release-notes.md │ │ ├── 3.5.0-alpha-1 │ │ │ └── release-notes.md │ │ ├── 3.5.0-beta-1 │ │ │ └── release-notes.md │ │ ├── 3.5.0 │ │ │ └── release-notes.md │ │ ├── 3.5.2 │ │ │ └── release-notes.md │ │ ├── 3.5.3 │ │ │ └── release-notes.md │ │ ├── 3.5.4 │ │ │ └── release-notes.md │ │ ├── 3.6.0 │ │ │ └── release-notes.md │ │ ├── 3.6.1 │ │ │ └── release-notes.md │ │ ├── 3.6.2 │ │ │ └── release-notes.md │ │ ├── 3.6.3 │ │ │ └── release-notes.md │ │ ├── 3.8.1 │ │ │ └── release-notes.md │ │ ├── 3.8.2 │ │ │ └── release-notes.md │ │ ├── 3.8.3 │ │ │ └── release-notes.md │ │ ├── 3.8.4 │ │ │ └── release-notes.md │ │ ├── 3.8.5 │ │ │ └── release-notes.md │ │ ├── 3.8.6 │ │ │ └── release-notes.md │ │ ├── 3.8.7 │ │ │ └── release-notes.md │ │ ├── 3.8.8 │ │ │ └── release-notes.md │ │ ├── 3.9.0 │ │ │ └── release-notes.md │ │ ├── 3.9.1 │ │ │ └── release-notes.md │ │ ├── 3.9.10 │ │ │ └── release-notes.md │ │ ├── 3.9.2 │ │ │ └── release-notes.md │ │ ├── 3.9.3 │ │ │ └── release-notes.md │ │ ├── 3.9.4 │ │ │ └── release-notes.md │ │ ├── 3.9.5 │ │ │ └── release-notes.md │ │ ├── 3.9.6 │ │ │ └── release-notes.md │ │ ├── 3.9.7 │ │ │ └── release-notes.md │ │ ├── 3.9.8 │ │ │ └── release-notes.md │ │ ├── 3.9.9 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-10 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-12 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-13 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-2 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-3 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-4 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-5 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-7 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-8 │ │ │ └── release-notes.md │ │ ├── 4.0.0-alpha-9 │ │ │ └── release-notes.md │ │ ├── 4.0.0-beta-3 │ │ │ └── release-notes.md │ │ ├── 4.0.0-beta-4 │ │ │ └── release-notes.md │ │ ├── 4.0.0-beta-5 │ │ │ └── release-notes.md │ │ ├── 4.0.0-rc-1 │ │ │ └── release-notes.md │ │ ├── 4.0.0-rc-2 │ │ │ └── release-notes.md │ │ ├── 4.0.0-rc-3 │ │ │ └── release-notes.md │ │ └── history.md.vm │ ├── extensions │ │ └── index.md │ ├── faq-unoffical.md │ ├── general.md │ ├── glossary.md │ ├── guides │ │ ├── mini │ │ │ ├── guide-encryption-4.md │ │ │ ├── guide-maven-ci-friendly.md │ │ │ ├── guide-migration-to-mvn4.md │ │ │ ├── guide-multiple-subprojects-4.md │ │ │ ├── guide-naming-conventions.md │ │ │ └── guide-resolver-transport.md │ │ └── plugins │ │ │ └── validation │ │ │ └── index.md │ ├── ide.md │ ├── install.md.vm │ ├── issue-management.md │ ├── maven-1.x-eol.md │ ├── maven-2.x-eol.md │ ├── maven-conventions.md │ ├── maven-jsr330.md │ ├── maven-logging.md │ ├── mvnd.md │ ├── privacy-policy.md │ ├── project-faq.md │ ├── project-roles.md │ ├── reference │ │ ├── maven-classloading.md │ │ ├── maven-classloading.odg │ │ └── maven-classloading.png │ ├── release-notes-all.md.vm │ ├── repositories │ │ ├── artifacts.md │ │ ├── dependencies.md │ │ ├── index.md │ │ ├── layout.md │ │ ├── local.md │ │ ├── metadata.md │ │ └── remote.md │ ├── repository-management.md │ ├── repository │ │ ├── index.md │ │ ├── layout.md │ │ ├── maven-central-repository.odg │ │ └── maven-repositories.odg │ ├── resource │ │ └── branding │ │ │ └── actioncards.md │ ├── run.md │ ├── scm.md │ ├── security-plexus-archiver.md │ ├── security.md │ ├── settings.md │ ├── support-and-training.md │ ├── testimonials.md │ ├── tools │ │ └── index.md │ ├── what-is-maven.md │ └── whatsnewinmaven4.md ├── resources │ ├── ant │ │ ├── build-a1.xml │ │ ├── build-a2.xml │ │ ├── build-a3.xml │ │ └── build-a4.xml │ ├── archives │ │ └── components.links │ ├── badges │ │ ├── asf_jira-ARCHETYPE.json │ │ ├── asf_jira-DOXIA.json │ │ ├── asf_jira-DOXIASITETOOLS.json │ │ ├── asf_jira-DOXIATOOLS.json │ │ ├── asf_jira-JXR.json │ │ ├── asf_jira-MACR.json │ │ ├── asf_jira-MANTRUN.json │ │ ├── asf_jira-MARCHETYPES.json │ │ ├── asf_jira-MARTIFACT.json │ │ ├── asf_jira-MASFRES.json │ │ ├── asf_jira-MASSEMBLY.json │ │ ├── asf_jira-MBUILDCACHE.json │ │ ├── asf_jira-MCHANGELOG.json │ │ ├── asf_jira-MCHANGES.json │ │ ├── asf_jira-MCHECKSTYLE.json │ │ ├── asf_jira-MCLEAN.json │ │ ├── asf_jira-MCOMPILER.json │ │ ├── asf_jira-MDEP.json │ │ ├── asf_jira-MDEPLOY.json │ │ ├── asf_jira-MDOAP.json │ │ ├── asf_jira-MDOCCK.json │ │ ├── asf_jira-MEAR.json │ │ ├── asf_jira-MEJB.json │ │ ├── asf_jira-MENFORCER.json │ │ ├── asf_jira-MGPG.json │ │ ├── asf_jira-MINDEXER.json │ │ ├── asf_jira-MINSTALL.json │ │ ├── asf_jira-MINVOKER.json │ │ ├── asf_jira-MJAR.json │ │ ├── asf_jira-MJARSIGNER.json │ │ ├── asf_jira-MJAVADOC.json │ │ ├── asf_jira-MJDEPRSCAN.json │ │ ├── asf_jira-MJDEPS.json │ │ ├── asf_jira-MJLINK.json │ │ ├── asf_jira-MJMOD.json │ │ ├── asf_jira-MLINKCHECK.json │ │ ├── asf_jira-MNG.json │ │ ├── asf_jira-MNGSITE.json │ │ ├── asf_jira-MPATCH.json │ │ ├── asf_jira-MPDF.json │ │ ├── asf_jira-MPH.json │ │ ├── asf_jira-MPIR.json │ │ ├── asf_jira-MPLUGIN.json │ │ ├── asf_jira-MPLUGINTESTING.json │ │ ├── asf_jira-MPMD.json │ │ ├── asf_jira-MPOM.json │ │ ├── asf_jira-MRAR.json │ │ ├── asf_jira-MRELEASE.json │ │ ├── asf_jira-MRESOLVER.json │ │ ├── asf_jira-MRESOURCES.json │ │ ├── asf_jira-MRRESOURCES.json │ │ ├── asf_jira-MSCMPUB.json │ │ ├── asf_jira-MSCRIPTING.json │ │ ├── asf_jira-MSHADE.json │ │ ├── asf_jira-MSHARED.json │ │ ├── asf_jira-MSITE.json │ │ ├── asf_jira-MSKINS.json │ │ ├── asf_jira-MSOURCES.json │ │ ├── asf_jira-MSTAGE.json │ │ ├── asf_jira-MTOOLCHAINS.json │ │ ├── asf_jira-MVERIFIER.json │ │ ├── asf_jira-MWAR.json │ │ ├── asf_jira-MWRAPPER.json │ │ ├── asf_jira-SCM.json │ │ ├── asf_jira-SUREFIRE.json │ │ ├── asf_jira-WAGON.json │ │ └── ml-users.json │ ├── components.links │ ├── css │ │ └── site.css │ ├── developers │ │ ├── .htaccess │ │ ├── maven.xml │ │ ├── release │ │ │ └── .htaccess │ │ ├── svn-eol-style.txt │ │ └── website │ │ │ ├── component-reference-documentation.png │ │ │ ├── main-website.png │ │ │ └── website-overview.png │ ├── extensions │ │ └── components.links │ ├── guides │ │ └── MavenQuickReferenceCard.pdf │ ├── images │ │ ├── Close_Repo.png │ │ ├── Promote.png │ │ ├── Validate_Artifacts.png │ │ ├── add.gif │ │ ├── apache-maven-project-2.png │ │ ├── apache-maven-project-blue.png │ │ ├── apache-maven-project.jpg │ │ ├── apache-maven-project.png │ │ ├── apache-maven.png │ │ ├── archiva.png │ │ ├── asf_logo_wide_clear.gif │ │ ├── banner.jpg │ │ ├── bg.jpg │ │ ├── books │ │ │ ├── apache_maven_2_effective_implementation.jpg │ │ │ ├── apache_maven_3_0_cookbook.jpg │ │ │ ├── apache_maven_cookbook.jpg │ │ │ ├── better_builds.png │ │ │ ├── definitive_guide.jpg │ │ │ ├── developer_notebook.gif │ │ │ ├── getting_started.png │ │ │ ├── pearson_apache_maven_fr.jpg │ │ │ └── pearson_apache_maven_fr.png │ │ ├── branding │ │ │ ├── i_am_a_maven_committer_1.png │ │ │ ├── i_am_a_maven_content_contributor_1.png │ │ │ ├── i_am_a_maven_contributor_1.png │ │ │ ├── i_am_a_proud_maven_user_1.png │ │ │ ├── i_maintain_maven_plugins_1.png │ │ │ ├── i_sumbitted_my_first_maven_pull_request_1.png │ │ │ ├── im_a_grateful_maven_user_1.png │ │ │ ├── im_a_happy_maven_user_1.png │ │ │ └── my_first_maven_pr_was_merged_1.png │ │ ├── breadcrumbs.jpg │ │ ├── close.gif │ │ ├── collapsed.gif │ │ ├── collapsed.png │ │ ├── expanded.gif │ │ ├── expanded.png │ │ ├── external-classic.png │ │ ├── external.png │ │ ├── favicon.ico │ │ ├── file.gif │ │ ├── fix.gif │ │ ├── folder-closed.gif │ │ ├── folder-open.gif │ │ ├── h3.gif │ │ ├── h3.jpg │ │ ├── h5.jpg │ │ ├── help_logo.gif │ │ ├── icon_alert.gif │ │ ├── icon_alertsml.gif │ │ ├── icon_arrowfolder1_sml.gif │ │ ├── icon_arrowfolder2_sml.gif │ │ ├── icon_arrowfolderclosed1_sml.gif │ │ ├── icon_arrowfolderopen2_sml.gif │ │ ├── icon_arrowmembers1_sml.gif │ │ ├── icon_arrowmembers2_sml.gif │ │ ├── icon_arrowusergroups1_sml.gif │ │ ├── icon_arrowusergroups2_sml.gif │ │ ├── icon_arrowwaste1_sml.gif │ │ ├── icon_arrowwaste2_sml.gif │ │ ├── icon_confirmsml.gif │ │ ├── icon_doc_lrg.gif │ │ ├── icon_doc_sml.gif │ │ ├── icon_error_lrg.gif │ │ ├── icon_error_sml.gif │ │ ├── icon_folder_lrg.gif │ │ ├── icon_folder_sml.gif │ │ ├── icon_help_lrg.gif │ │ ├── icon_help_sml.gif │ │ ├── icon_info_lrg.gif │ │ ├── icon_info_sml.gif │ │ ├── icon_infosml.gif │ │ ├── icon_members_lrg.gif │ │ ├── icon_members_sml.gif │ │ ├── icon_sortdown.gif │ │ ├── icon_sortleft.gif │ │ ├── icon_sortright.gif │ │ ├── icon_sortup.gif │ │ ├── icon_success_lrg.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_usergroups_lrg.gif │ │ ├── icon_usergroups_sml.gif │ │ ├── icon_warning_lrg.gif │ │ ├── icon_warning_sml.gif │ │ ├── icon_waste_lrg.gif │ │ ├── icon_waste_sml.gif │ │ ├── jakarta-logo-blue.gif │ │ ├── jakarta-logo-blue.png │ │ ├── logo_apache.jpg │ │ ├── logo_maven.jpg │ │ ├── logos │ │ │ ├── build-by-maven-black.png │ │ │ ├── build-by-maven-white.png │ │ │ ├── logo_infosupport.svg │ │ │ ├── logo_takari.png │ │ │ ├── logo_vogella.png │ │ │ ├── logo_webagesolutions.svg │ │ │ ├── maven-bolt.png │ │ │ ├── maven-brewed.png │ │ │ ├── maven-build-successfull.png │ │ │ ├── maven-built.png │ │ │ ├── maven-bulldozer.png │ │ │ ├── maven-button-1.png │ │ │ ├── maven-button-2.png │ │ │ ├── maven-button-3.png │ │ │ ├── maven-button-4.png │ │ │ ├── maven-button-5.png │ │ │ ├── maven-button-black.png │ │ │ ├── maven-button-blue.png │ │ │ ├── maven-button-copper.png │ │ │ ├── maven-button-green.png │ │ │ ├── maven-button-pinky.png │ │ │ ├── maven-button-purple.png │ │ │ ├── maven-button-teal.png │ │ │ ├── maven-feather.png │ │ │ ├── maven-frankenstein.png │ │ │ ├── maven-inside.png │ │ │ ├── maven-mavenfactured.png │ │ │ ├── maven-petesucks.png │ │ │ ├── maven-propaganda-2.png │ │ │ ├── maven-propaganda.png │ │ │ └── maven-redgreen.png │ │ ├── mascot-large.png │ │ ├── mascot-large.svg │ │ ├── mascot-small.png │ │ ├── mascot-small.svg │ │ ├── mascot-student.png │ │ ├── mascot-student.svg │ │ ├── maven-1.x.png │ │ ├── maven-blue.png │ │ ├── maven-console.png │ │ ├── maven-logo-2.gif │ │ ├── maven-logo-black-on-white.png │ │ ├── maven-logo-black-on-white.purevec.svg │ │ ├── maven-logo-black-on-white.svg │ │ ├── maven-logo-white-on-black.png │ │ ├── maven-logo-white-on-black.purevec.svg │ │ ├── maven-logo-white-on-black.svg │ │ ├── maven-small.gif │ │ ├── maven.gif │ │ ├── maven.jpg │ │ ├── maven.png │ │ ├── maventxt_logo_200-2.ai │ │ ├── maventxt_logo_200.ai │ │ ├── maventxt_logo_200.gif │ │ ├── newwindow-classic.png │ │ ├── newwindow.png │ │ ├── none.png │ │ ├── nw_maj.gif │ │ ├── nw_maj_hi.gif │ │ ├── nw_maj_rond.gif │ │ ├── nw_med.gif │ │ ├── nw_med_hi.gif │ │ ├── nw_med_rond.gif │ │ ├── nw_min.gif │ │ ├── nw_min_036.gif │ │ ├── nw_min_hi.gif │ │ ├── pdf.gif │ │ ├── poweredby_036.gif │ │ ├── product_logo.gif │ │ ├── remove.gif │ │ ├── rss.png │ │ ├── se_maj_rond.gif │ │ ├── strich.gif │ │ ├── sw_maj_rond.gif │ │ ├── sw_med_rond.gif │ │ ├── sw_min.gif │ │ └── update.gif │ ├── maven-sources.png │ ├── pdf-config.xml │ ├── plugins │ │ └── components.links │ ├── pom │ │ └── components.links │ ├── repository │ │ ├── maven-central-repository.png │ │ └── maven-repositories.png │ ├── shared │ │ └── components.links │ ├── skins │ │ └── components.links │ └── xsd │ │ ├── .htaccess │ │ ├── archetype-1.0.0.xsd │ │ ├── archetype-catalog-1.0.0.xsd │ │ ├── archetype-descriptor-1.0.0.xsd │ │ ├── archetype-descriptor-1.1.0.xsd │ │ ├── archetype-descriptor-1.2.0.xsd │ │ ├── archetype-registry-1.0.0.xsd │ │ ├── assembly-1.0.0.xsd │ │ ├── assembly-1.1.0.xsd │ │ ├── assembly-1.1.1.xsd │ │ ├── assembly-1.1.2.xsd │ │ ├── assembly-1.1.3.xsd │ │ ├── assembly-2.0.0.xsd │ │ ├── assembly-2.1.0.xsd │ │ ├── assembly-2.1.1.xsd │ │ ├── assembly-2.2.0.xsd │ │ ├── assembly-component-2.0.0.xsd │ │ ├── assembly-component-2.1.0.xsd │ │ ├── assembly-component-2.1.1.xsd │ │ ├── assembly-component-2.2.0.xsd │ │ ├── book-1.0.0.xsd │ │ ├── build-cache-build-1.0.0.xsd │ │ ├── build-cache-build-1.2.0.xsd │ │ ├── build-cache-config-1.0.0.xsd │ │ ├── build-cache-config-1.2.0.xsd │ │ ├── build-cache-diff-1.0.0.xsd │ │ ├── build-cache-diff-1.2.0.xsd │ │ ├── build-cache-report-1.0.0.xsd │ │ ├── build-cache-report-1.2.0.xsd │ │ ├── changes-1.0.0.xsd │ │ ├── changes-2.0.0.xsd │ │ ├── component-1.0.0.xsd │ │ ├── component-1.1.0.xsd │ │ ├── component-1.1.1.xsd │ │ ├── component-1.1.2.xsd │ │ ├── component-1.1.3.xsd │ │ ├── core-extensions-1.0.0.xsd │ │ ├── core-extensions-1.1.0.xsd │ │ ├── core-extensions-1.2.0-alpha-10.xsd │ │ ├── core-extensions-1.2.0-alpha-12.xsd │ │ ├── core-extensions-1.2.0-alpha-13.xsd │ │ ├── core-extensions-1.2.0-alpha-8.xsd │ │ ├── core-extensions-1.2.0-beta-3.xsd │ │ ├── core-extensions-1.2.0-beta-4.xsd │ │ ├── core-extensions-1.2.0-beta-5.xsd │ │ ├── core-extensions-1.2.0-rc-1.xsd │ │ ├── core-extensions-1.2.0-rc-2.xsd │ │ ├── core-extensions-1.2.0-rc-3.xsd │ │ ├── decoration-1.0.0.xsd │ │ ├── decoration-1.0.1.xsd │ │ ├── decoration-1.1.0.xsd │ │ ├── decoration-1.3.0.xsd │ │ ├── decoration-1.4.0.xsd │ │ ├── decoration-1.6.0.xsd │ │ ├── decoration-1.7.0.xsd │ │ ├── decoration-1.8.0.xsd │ │ ├── decoration-1.8.1.xsd │ │ ├── document-1.0.0.xsd │ │ ├── document-1.0.1.xsd │ │ ├── fml-1.0.1.xsd │ │ ├── fml-1.0.xsd │ │ ├── lifecycle-1.0.0-alpha-13.xsd │ │ ├── lifecycle-1.0.0-beta-3.xsd │ │ ├── lifecycle-1.0.0-beta-4.xsd │ │ ├── lifecycle-1.0.0-beta-5.xsd │ │ ├── lifecycle-1.0.0-rc-1.xsd │ │ ├── lifecycle-1.0.0-rc-2.xsd │ │ ├── lifecycle-1.0.0.xsd │ │ ├── lifecycle-2.0.0-rc-3.xsd │ │ ├── maven-4.0.0.xsd │ │ ├── maven-4.1.0-alpha-10.xsd │ │ ├── maven-4.1.0-alpha-12.xsd │ │ ├── maven-4.1.0-alpha-13.xsd │ │ ├── maven-4.1.0-alpha-8.xsd │ │ ├── maven-4.1.0-beta-3.xsd │ │ ├── maven-4.1.0-beta-4.xsd │ │ ├── maven-4.1.0-beta-5.xsd │ │ ├── maven-4.1.0-rc-1.xsd │ │ ├── maven-4.1.0-rc-2.xsd │ │ ├── maven-4.1.0-rc-3.xsd │ │ ├── maven-project-3.0.0.xsd │ │ ├── maven-v3_0_0.xsd │ │ ├── paramdoc-1.0.0-beta-3.xsd │ │ ├── paramdoc-1.0.0-beta-4.xsd │ │ ├── paramdoc-1.0.0.xsd │ │ ├── plugin-2.0.0-alpha-13.xsd │ │ ├── plugin-2.0.0-beta-3.xsd │ │ ├── plugin-2.0.0-beta-4.xsd │ │ ├── plugin-2.0.0-beta-5.xsd │ │ ├── plugin-2.0.0-rc-1.xsd │ │ ├── plugin-2.0.0-rc-3.xsd │ │ ├── plugin-metadata-1.0.0.xsd │ │ ├── profiles-1.0.0-beta-3.xsd │ │ ├── profiles-1.0.0-beta-4.xsd │ │ ├── profiles-1.0.0.xsd │ │ ├── remote-resources-1.1.0.xsd │ │ ├── repository-metadata-1.1.0.xsd │ │ ├── repository-metadata-1.2.0-alpha-13.xsd │ │ ├── repository-metadata-1.2.0-beta-3.xsd │ │ ├── repository-metadata-1.2.0-beta-4.xsd │ │ ├── repository-metadata-1.2.0-beta-5.xsd │ │ ├── repository-metadata-1.2.0-rc-1.xsd │ │ ├── repository-metadata-1.2.0-rc-2.xsd │ │ ├── repository-metadata-1.2.0-rc-3.xsd │ │ ├── settings-1.0.0.xsd │ │ ├── settings-1.1.0.xsd │ │ ├── settings-1.2.0.xsd │ │ ├── settings-1.3.0-alpha-10.xsd │ │ ├── settings-1.3.0-alpha-12.xsd │ │ ├── settings-1.3.0-alpha-13.xsd │ │ ├── settings-1.3.0-alpha-8.xsd │ │ ├── settings-1.3.0-beta-3.xsd │ │ ├── settings-1.3.0-beta-4.xsd │ │ ├── settings-1.3.0-beta-5.xsd │ │ ├── settings-2.0.0-alpha-13.xsd │ │ ├── settings-2.0.0-beta-3.xsd │ │ ├── settings-2.0.0-beta-4.xsd │ │ ├── settings-2.0.0-beta-5.xsd │ │ ├── settings-2.0.0-rc-1.xsd │ │ ├── settings-2.0.0-rc-2.xsd │ │ ├── settings-2.0.0-rc-3.xsd │ │ ├── site-2.0.0.xsd │ │ ├── skin-1.7.0.xsd │ │ ├── skin-2.0.0.xsd │ │ ├── supplemental-model-1.0.0.xsd │ │ ├── toolchains-1.0.0.xsd │ │ ├── toolchains-1.1.0-alpha-13.xsd │ │ ├── toolchains-1.1.0-beta-3.xsd │ │ ├── toolchains-1.1.0-beta-4.xsd │ │ ├── toolchains-1.1.0-beta-5.xsd │ │ ├── toolchains-1.1.0-rc-1.xsd │ │ ├── toolchains-1.1.0-rc-2.xsd │ │ ├── toolchains-1.1.0.xsd │ │ ├── toolchains-1.2.0-rc-3.xsd │ │ ├── verifications-1.0.0.xsd │ │ └── xdoc-2.0.xsd ├── site.xml └── xdoc │ ├── download.xml.vm │ ├── errors │ └── 404.xml.vm │ └── index.xml.vm ├── pom.xml └── src ├── main └── java │ └── org │ └── apache │ └── maven │ └── site │ └── update │ └── Update.java └── plantuml ├── buildExtensionClassRealm.puml ├── maven-sources ├── core.puml ├── doxia.puml ├── misc.puml ├── plexus.puml ├── plugins.puml ├── shared.puml └── site.puml ├── multi-subproject.puml └── pluginClassRealm.puml /.asf.yaml: -------------------------------------------------------------------------------- 1 | # see https://s.apache.org/asfyaml 2 | github: 3 | description: "Apache Maven site" 4 | homepage: https://maven.apache.org/ 5 | labels: 6 | - apache 7 | - maven 8 | enabled_merge_buttons: 9 | squash: true 10 | merge: false 11 | rebase: true 12 | autolink_jira: 13 | - MNG 14 | - MNGSITE 15 | - MSITE 16 | - MINSTALL 17 | - MPIR 18 | - MANTTASKS 19 | - MGPG 20 | - SUREFIRE 21 | - MENFORCER 22 | - DOXIASITETOOLS 23 | - MPLUGIN 24 | - MWRAPPER 25 | - MSHARED 26 | - MSKINS 27 | - MPOM 28 | - ARCHETYPE 29 | - ARCHETYPES 30 | - INFRA 31 | - MASSEMBLY 32 | - FELIX 33 | - MRELEASE 34 | del_branch_on_merge: true 35 | features: 36 | issues: true 37 | 38 | notifications: 39 | commits: commits@maven.apache.org 40 | issues: issues@maven.apache.org 41 | pullrequests: issues@maven.apache.org 42 | jira_options: link label 43 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema 19 | 20 | name: Bug Report 21 | description: File a bug report 22 | labels: ["bug"] 23 | 24 | body: 25 | - type: markdown 26 | attributes: 27 | value: | 28 | Thanks for taking the time to fill out this bug report. 29 | 30 | Simple fixes in single PRs do not require issues. 31 | 32 | - type: textarea 33 | id: massage 34 | attributes: 35 | label: Bug description 36 | validations: 37 | required: true 38 | 39 | - type: input 40 | id: url 41 | attributes: 42 | label: Maven site URL where bug exists 43 | placeholder: https://maven.apache.org/... 44 | validations: 45 | required: true 46 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/IMPROVEMENT.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema 19 | 20 | name: Improvement Proposal 21 | description: File a a proposal for improvement 22 | labels: ["enhancement"] 23 | 24 | body: 25 | - type: markdown 26 | attributes: 27 | value: | 28 | Thanks for taking the time to fill out this improvement proposal. 29 | 30 | - type: textarea 31 | id: massage 32 | attributes: 33 | label: Improvement proposal 34 | validations: 35 | required: true 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser 19 | 20 | blank_issues_enabled: false 21 | 22 | contact_links: 23 | 24 | - name: Project Mailing Lists 25 | url: https://maven.apache.org/mailing-lists.html 26 | about: Please ask a questions or discuss here 27 | 28 | - name: Old JIRA Issues 29 | url: https://issues.apache.org/jira/projects/MNGSITE 30 | about: Please search old JIRA issues 31 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | version: 2 18 | updates: 19 | - package-ecosystem: "maven" 20 | directory: "/" 21 | schedule: 22 | interval: "daily" 23 | - package-ecosystem: "github-actions" 24 | directory: "/" 25 | schedule: 26 | interval: "daily" 27 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Following this checklist to help us incorporate your 2 | contribution quickly and easily: 3 | 4 | - [ ] Your pull request should address just one issue, without pulling in other changes. 5 | - [ ] Each commit in the pull request should have a meaningful subject line and body. 6 | Note that commits might be squashed by a maintainer on merge. 7 | - [ ] Run `mvn site` and examine output in `target/site` directory. 8 | Site will also be built on your pull request automatically and attached to GitHub Action result. 9 | 10 | If your pull request is about ~20 lines of code you don't need to sign an 11 | [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure 12 | please ask on the developers list. 13 | 14 | To make clear that you license your contribution under 15 | the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0) 16 | you have to acknowledge this by using the following check-box. 17 | 18 | - [ ] I hereby declare this contribution to be licenced under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0) 19 | - [ ] In any other case, please file an [Apache Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf). 20 | 21 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | name: Stale 19 | 20 | on: 21 | schedule: 22 | - cron: '11 3 * * *' 23 | issue_comment: 24 | types: [ 'created' ] 25 | 26 | jobs: 27 | stale: 28 | uses: 'apache/maven-gh-actions-shared/.github/workflows/stale.yml@v4' 29 | -------------------------------------------------------------------------------- /.github/workflows/verify-site.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one or more 3 | # contributor license agreements. See the NOTICE file distributed with 4 | # this work for additional information regarding copyright ownership. 5 | # The ASF licenses this file to You under the Apache License, Version 2.0 6 | # (the "License"); you may not use this file except in compliance with 7 | # the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | name: Verify Site 19 | 20 | on: pull_request 21 | 22 | # allow single build per PR 23 | concurrency: 24 | group: ${{ github.workflow }}-${{ github.event.number }} 25 | cancel-in-progress: true 26 | 27 | permissions: {} 28 | 29 | jobs: 30 | build: 31 | name: Verify and build Maven Site 32 | runs-on: ubuntu-latest 33 | 34 | steps: 35 | - name: Checkout 36 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 37 | with: 38 | persist-credentials: false 39 | 40 | - name: Set up JDK 41 | uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4 42 | with: 43 | java-version: 21 44 | distribution: 'zulu' 45 | cache: 'maven' 46 | 47 | - name: Set up Maven 48 | run: 49 | mvn --errors --batch-mode --no-transfer-progress --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.9" 50 | 51 | - name: Verify and build Maven Site 52 | run: ./mvnw --errors --batch-mode --no-transfer-progress --show-version verify site 53 | 54 | - name: Upload Maven Site 55 | uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4 56 | with: 57 | name: ${{ github.event.number }}-${{ github.run_number }}-site 58 | path: | 59 | target/site/** 60 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | nbactions.xml 4 | .settings 5 | target 6 | test-output 7 | *.iml 8 | .idea 9 | .DS_Store 10 | .factorypath 11 | -------------------------------------------------------------------------------- /.mvn/keep-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/.mvn/keep-me -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 17 | 18 | # Maven Site 19 | 20 | [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)][license] 21 | [![Jenkins Status](https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven-site/job/master.svg)][build] 22 | 23 | This is the Git repository for the content of . 24 | See [website documentation](https://maven.apache.org/developers/website/) for details on the publication structure. 25 | 26 | ## Run Locally 27 | 28 | You can run 29 | 30 | ``` 31 | $ mvn site:run 32 | ``` 33 | 34 | to run locally and see the website on . 35 | 36 | Additional Resources 37 | -------------------- 38 | 39 | + [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch) 40 | + [Contributor License Agreement][cla] 41 | + [General GitHub documentation](https://docs.github.com) 42 | + [GitHub pull request documentation](https://docs.github.com/pull-requests) 43 | + [Apache Maven Twitter Account](https://twitter.com/ASFMavenProject) 44 | + [Slack channel in ASF Workspace](https://infra.apache.org/slack.html) 45 | 46 | [license]: https://www.apache.org/licenses/LICENSE-2.0 47 | [ml-list]: https://maven.apache.org/mailing-lists.html 48 | [cla]: https://www.apache.org/licenses/#clas 49 | [build]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-site/job/master/ 50 | 51 | -------------------------------------------------------------------------------- /content/apt/developers/committer-environment.apt: -------------------------------------------------------------------------------- 1 | ------ 2 | Developers centre - Committer Environment 3 | ------ 4 | Vincent Siveton 5 | ------ 6 | 2006-10-01 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ https://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Committer Environment 30 | 31 | * Introduction 32 | 33 | This document describes how to set up the Maven committer environment. 34 | 35 | * Source File Encoding 36 | 37 | When editing source files, make sure you use the right file encoding. For the Maven project, UTF-8 has been chosen 38 | as the default file encoding. UTF-8 is an encoding scheme for the Unicode character set that can encode 39 | all characters that Java can handle. The source files should not contain the byte order mark (BOM). There are 40 | exceptions to this general rule. For instance, properties files are encoded using ISO-8859-1 as per the JRE API, so 41 | please keep this in mind, too. 42 | 43 | * Maven Code Style 44 | 45 | Refer to {{{./conventions/code.html}Maven Code Style And Code Conventions}} 46 | 47 | * Useful software 48 | 49 | The Maven Team uses assorted software. Here is a partial list: 50 | 51 | * {{{https://www.cygwin.com/}Cygwin}}: collection of free software tools that allow various versions of Microsoft 52 | Windows to act somewhat like a Unix system 53 | 54 | * {{{https://www.gnupg.org/}GnuPG}}: GNU Privacy Guard. 55 | -------------------------------------------------------------------------------- /content/apt/developers/release/index.apt: -------------------------------------------------------------------------------- 1 | ----- 2 | Releasing A Maven Project 3 | ----- 4 | Jason van Zyl 5 | ----- 6 | 2010-07-26 7 | ----- 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | Releasing A Maven Project 27 | 28 | What follows is a description of releasing a Maven project to a staging repository and its documentation, whereupon 29 | it is scrutinized by the community, approved, and transferred to a production repository. 30 | 31 | The steps involved are similar for any Apache project, with more specifics for parent POMs and 32 | Maven itself. The steps involved, and the relevant documents for each, are listed below. 33 | 34 | ~~ nothing specific: normal component * {{{./maven-plugin-release.html} Releasing a Maven plugin project}} 35 | 36 | ~~ nothing specific: normal component * {{{./maven-shared-release.html} Releasing a Maven shared component or subproject}} 37 | 38 | * {{{./maven-core-release.html} Releasing Maven Core}} 39 | 40 | * {{{./parent-pom-release.html} Releasing a parent POM}} 41 | 42 | [] 43 | 44 | The above links all provide specific information for those types of releases, but they all refer back to the common documentation: 45 | 46 | * {{{./maven-project-release-procedure.html} Maven Project Common Release procedure}} 47 | 48 | [] 49 | -------------------------------------------------------------------------------- /content/apt/developers/website/website-overview.apt: -------------------------------------------------------------------------------- 1 | ------ 2 | Deploy Maven Website 3 | ------ 4 | Barrie Treloar 5 | Hervé Boutemy 6 | ------ 7 | 2013-09-23 8 | ------ 9 | 10 | ~~ Licensed to the Apache Software Foundation (ASF) under one 11 | ~~ or more contributor license agreements. See the NOTICE file 12 | ~~ distributed with this work for additional information 13 | ~~ regarding copyright ownership. The ASF licenses this file 14 | ~~ to you under the Apache License, Version 2.0 (the 15 | ~~ "License"); you may not use this file except in compliance 16 | ~~ with the License. You may obtain a copy of the License at 17 | ~~ 18 | ~~ http://www.apache.org/licenses/LICENSE-2.0 19 | ~~ 20 | ~~ Unless required by applicable law or agreed to in writing, 21 | ~~ software distributed under the License is distributed on an 22 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 23 | ~~ KIND, either express or implied. See the License for the 24 | ~~ specific language governing permissions and limitations 25 | ~~ under the License. 26 | 27 | ~~ NOTE: For help with the syntax of this file, see: 28 | ~~ http://maven.apache.org/doxia/references/apt-format.html 29 | 30 | Introduction 31 | 32 | The Maven {{{/}https://maven.apache.org}} website is composed from: 33 | 34 | * a main content 35 | 36 | * multiple components reference documentation 37 | 38 | [] 39 | 40 | [website-overview.png] Website mechanisms overview 41 | 42 | 43 | See {{{./index.html}Maven website introduction}} for instructions on website publication. 44 | -------------------------------------------------------------------------------- /content/apt/developers/website/website-overview.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/apt/developers/website/website-overview.odg -------------------------------------------------------------------------------- /content/apt/docs/2.0.1/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.1 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.1 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330148}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | 39 | 40 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.10/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.10 3 | ------ 4 | Brett Porter 5 | Jason van Zyl 6 | Brian Fox 7 | ------ 8 | 2008-04-09 9 | ------ 10 | 11 | ~~ Licensed to the Apache Software Foundation (ASF) under one 12 | ~~ or more contributor license agreements. See the NOTICE file 13 | ~~ distributed with this work for additional information 14 | ~~ regarding copyright ownership. The ASF licenses this file 15 | ~~ to you under the Apache License, Version 2.0 (the 16 | ~~ "License"); you may not use this file except in compliance 17 | ~~ with the License. You may obtain a copy of the License at 18 | ~~ 19 | ~~ http://www.apache.org/licenses/LICENSE-2.0 20 | ~~ 21 | ~~ Unless required by applicable law or agreed to in writing, 22 | ~~ software distributed under the License is distributed on an 23 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 24 | ~~ KIND, either express or implied. See the License for the 25 | ~~ specific language governing permissions and limitations 26 | ~~ under the License. 27 | 28 | ~~ NOTE: For help with the syntax of this file, see: 29 | ~~ http://maven.apache.org/doxia/references/apt-format.html 30 | 31 | Maven 2.0.10 32 | 33 | The Apache Maven team would like to announce the release of Maven 2.0.10. 34 | 35 | Maven 2.0.10 is {{{../../download.html} available for download}}. 36 | 37 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 38 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 39 | 40 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 41 | See the {{{../../plugins/index.html} Plugin List}} for more information. 42 | 43 | We hope you enjoy using Maven! If you have any questions, please consult: 44 | 45 | * the web site: {{http://maven.apache.org/}} 46 | 47 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 48 | 49 | For news and information, see: 50 | 51 | * Maven Dashboard: {{http://docs.codehaus.org/display/MAVEN/Home}} 52 | 53 | * Issue Summary 54 | 55 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330157}} 56 | 57 | * Complete release notes 58 | 59 | * See {{{../../docs/history.html}complete release notes for all versions}} 60 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.11/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.11 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2009-07-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.11 30 | 31 | The Apache Maven team would like to announce the release of Maven 2.0.11. 32 | 33 | Maven 2.0.11 is {{{/download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 39 | See the {{{/plugins/index.html} Plugin List}} for more information. 40 | 41 | We hope you enjoy using Maven! If you have any questions, please consult: 42 | 43 | * the web site: {{https://maven.apache.org/}} 44 | 45 | * the maven-user mailing list: {{https://maven.apache.org/mailing-lists.html}} 46 | 47 | For news and information, see: 48 | 49 | * Maven Dashboard: {{http://docs.codehaus.org/display/MAVEN/Home}} 50 | 51 | * Issue Summary 52 | 53 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330158}} 54 | 55 | * Complete release notes 56 | 57 | * See {{{../../docs/history.html}complete release notes for all versions}} 58 | 59 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.2/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.2 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.2 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330149}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.3/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.3 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.3 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330150}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.4/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.4 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.4 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330151}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.5/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.5 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.5 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330152}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.6/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.6 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.6 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330153}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.7/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.7 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.7 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330154}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.8/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.8 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.8 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330155}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0.9/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0.9 3 | ------ 4 | Brian Fox 5 | ------ 6 | 2008-04-08 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.0.9 30 | 31 | * Issue Summary 32 | 33 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330156}} 34 | 35 | * Complete release notes 36 | 37 | * See {{{../../docs/history.html}complete release notes for all versions}} 38 | -------------------------------------------------------------------------------- /content/apt/docs/2.0/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.0 3 | ------ 4 | Brett Porter 5 | ------ 6 | ------ 7 | 8 | ~~ Licensed to the Apache Software Foundation (ASF) under one 9 | ~~ or more contributor license agreements. See the NOTICE file 10 | ~~ distributed with this work for additional information 11 | ~~ regarding copyright ownership. The ASF licenses this file 12 | ~~ to you under the Apache License, Version 2.0 (the 13 | ~~ "License"); you may not use this file except in compliance 14 | ~~ with the License. You may obtain a copy of the License at 15 | ~~ 16 | ~~ http://www.apache.org/licenses/LICENSE-2.0 17 | ~~ 18 | ~~ Unless required by applicable law or agreed to in writing, 19 | ~~ software distributed under the License is distributed on an 20 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21 | ~~ KIND, either express or implied. See the License for the 22 | ~~ specific language governing permissions and limitations 23 | ~~ under the License. 24 | 25 | ~~ NOTE: For help with the syntax of this file, see: 26 | ~~ http://maven.apache.org/doxia/references/apt-format.html 27 | 28 | Maven 2.0 29 | 30 | * Issue Summary 31 | 32 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330147}} 33 | 34 | 35 | -------------------------------------------------------------------------------- /content/apt/docs/2.1.0/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.1.0 3 | ------ 4 | Brett Porter 5 | Jason van Zyl 6 | Brian Fox 7 | ------ 8 | 2009-02-04 9 | ------ 10 | 11 | ~~ Licensed to the Apache Software Foundation (ASF) under one 12 | ~~ or more contributor license agreements. See the NOTICE file 13 | ~~ distributed with this work for additional information 14 | ~~ regarding copyright ownership. The ASF licenses this file 15 | ~~ to you under the Apache License, Version 2.0 (the 16 | ~~ "License"); you may not use this file except in compliance 17 | ~~ with the License. You may obtain a copy of the License at 18 | ~~ 19 | ~~ http://www.apache.org/licenses/LICENSE-2.0 20 | ~~ 21 | ~~ Unless required by applicable law or agreed to in writing, 22 | ~~ software distributed under the License is distributed on an 23 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 24 | ~~ KIND, either express or implied. See the License for the 25 | ~~ specific language governing permissions and limitations 26 | ~~ under the License. 27 | 28 | ~~ NOTE: For help with the syntax of this file, see: 29 | ~~ http://maven.apache.org/doxia/references/apt-format.html 30 | 31 | Maven 2.1.0 32 | 33 | The Apache Maven team would like to announce the release of Maven 2.1.0. 34 | 35 | Maven 2.1.0 is {{{../../download.html} available for download}}. 36 | 37 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 38 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 39 | 40 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 41 | See the {{{../../plugins/index.html} Plugin List}} for more information. 42 | 43 | We hope you enjoy using Maven! If you have any questions, please consult: 44 | 45 | * the web site: {{http://maven.apache.org/}} 46 | 47 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 48 | 49 | * Issue Summary 50 | 51 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330160}} 52 | 53 | * Complete release notes 54 | 55 | * See {{{../../docs/history.html}complete release notes for all versions}} 56 | -------------------------------------------------------------------------------- /content/apt/docs/2.2.0/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.2.0 3 | ------ 4 | Brett Porter 5 | Jason van Zyl 6 | Brian Fox 7 | John Casey 8 | ------ 9 | 2009-06-30 10 | ------ 11 | 12 | ~~ Licensed to the Apache Software Foundation (ASF) under one 13 | ~~ or more contributor license agreements. See the NOTICE file 14 | ~~ distributed with this work for additional information 15 | ~~ regarding copyright ownership. The ASF licenses this file 16 | ~~ to you under the Apache License, Version 2.0 (the 17 | ~~ "License"); you may not use this file except in compliance 18 | ~~ with the License. You may obtain a copy of the License at 19 | ~~ 20 | ~~ http://www.apache.org/licenses/LICENSE-2.0 21 | ~~ 22 | ~~ Unless required by applicable law or agreed to in writing, 23 | ~~ software distributed under the License is distributed on an 24 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 25 | ~~ KIND, either express or implied. See the License for the 26 | ~~ specific language governing permissions and limitations 27 | ~~ under the License. 28 | 29 | ~~ NOTE: For help with the syntax of this file, see: 30 | ~~ http://maven.apache.org/doxia/references/apt-format.html 31 | 32 | Maven 2.2.0 33 | 34 | The Apache Maven team would like to announce the release of Maven 2.2.0. 35 | 36 | Maven 2.2.0 is {{{../../download.html} available for download}}. 37 | 38 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 39 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330161}} 53 | 54 | * Complete release notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/2.2.1/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 2.2.1 3 | ------ 4 | John Casey 5 | ------ 6 | 2009-08-11 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 2.2.1 30 | 31 | The Apache Maven team would like to announce the release of Maven 2.2.1. 32 | 33 | Maven 2.2.1 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 39 | See the {{{../../plugins/index.html} Plugin List}} for more information. 40 | 41 | We hope you enjoy using Maven! If you have any questions, please consult: 42 | 43 | * the web site: {{http://maven.apache.org/}} 44 | 45 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 46 | 47 | * Issue Summary 48 | 49 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330162}} 50 | 51 | * Complete release notes 52 | 53 | * See {{{../../docs/history.html}complete release notes for all versions}} 54 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-alpha-3/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-alpha-3 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2009-11-12 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-alpha-3 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-alpha-3. 32 | 33 | Maven 3.0-alpha-3 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330166}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-alpha-4/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-alpha-4 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2009-11-16 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-alpha-4 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-alpha-4. 32 | 33 | Maven 3.0-alpha-4 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330167}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-alpha-5/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-alpha-5 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2009-11-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-alpha-5 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-alpha-5. 32 | 33 | Maven 3.0-alpha-5 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330168}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-alpha-6/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-alpha-6 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2009-11-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-alpha-6 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-alpha-6. 32 | 33 | Maven 3.0-alpha-6 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330169}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-alpha-7/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-alpha-7 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-03-13 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-alpha-7 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-alpha-7. 32 | 33 | Maven 3.0-alpha-7 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330170}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-beta-1/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-beta-1 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-04-23 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-beta-1 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-beta-1. 32 | 33 | Maven 3.0-beta-1 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330171}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-beta-2/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-beta-2 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-beta-2 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-beta-2. 32 | 33 | Maven 3.0-beta-2 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330172}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0-beta-3/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0-beta-3 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0-beta-3 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0-beta-3. 32 | 33 | Maven 3.0-beta-3 is {{{../../download.html} available for download}} from the 'preview' section. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330173}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0.1/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0.1 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0.1 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0.1. 32 | 33 | Maven 3.0.1 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330175}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0.2/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0.2 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0.2 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0.2. 32 | 33 | Maven 3.0.2 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330176}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0.3/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0.3 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0.3 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0.3. 32 | 33 | Maven 3.0.3 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330178}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.0/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.0 3 | ------ 4 | Brett Porter 5 | ------ 6 | 2010-08-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.0 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.0. 32 | 33 | Maven 3.0 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * Issue Summary 51 | 52 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330174}} 53 | 54 | * Complete Release Notes 55 | 56 | * See {{{../../docs/history.html}complete release notes for all versions}} 57 | -------------------------------------------------------------------------------- /content/apt/docs/3.1.0/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.1.0 3 | ------ 4 | Jason van Zyl 5 | ------ 6 | 2013-07-13 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.1.0 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.1.0. 32 | 33 | Maven 3.1.0 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * the reference documentation: {{http://maven.apache.org/ref/3.1.0/}} 51 | 52 | * Issue Summary 53 | 54 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330183}} 55 | 56 | * Complete Release Notes 57 | 58 | * See {{{../../docs/history.html}complete release notes for all versions}} 59 | -------------------------------------------------------------------------------- /content/apt/docs/3.1.1/release-notes.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Release Notes - Maven 3.1.1 3 | ------ 4 | Jason van Zyl 5 | ------ 6 | 2013-09-10 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven 3.1.1 30 | 31 | The Apache Maven team would like to announce the release of Maven 3.1.1. 32 | 33 | Maven 3.1.1 is {{{../../download.html} available for download}}. 34 | 35 | Maven is a software project management and comprehension tool. Based on the concept of a project object model 36 | (POM), Maven can manage a project's build, reporting and documentation from a central place. 37 | 38 | Maven 3 aims to ensure backward compatibility with Maven 2, improve usability, increase performance, allow safe embedding, and pave the way 39 | to implement many highly demanded features. 40 | 41 | The core release is independent of the plugins available. Further releases of plugins will be made separately. 42 | See the {{{../../plugins/index.html} Plugin List}} for more information. 43 | 44 | We hope you enjoy using Maven! If you have any questions, please consult: 45 | 46 | * the web site: {{http://maven.apache.org/}} 47 | 48 | * the maven-user mailing list: {{http://maven.apache.org/mailing-lists.html}} 49 | 50 | * the reference documentation: {{http://maven.apache.org/ref/3.1.1/}} 51 | 52 | * Issue Summary 53 | 54 | {{https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12330184}} 55 | 56 | * Complete Release Notes 57 | 58 | * See {{{../../docs/history.html}complete release notes for all versions}} 59 | -------------------------------------------------------------------------------- /content/apt/examples/index.apt: -------------------------------------------------------------------------------- 1 | --- 2 | Summary of Maven Examples 3 | --- 4 | John Casey 5 | --- 6 | 2009-08-02 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Examples 30 | 31 | * {{{./injecting-properties-via-settings.html}Injecting POM Properties via settings.xml}} 32 | 33 | * {{{./maven-3-lifecycle-extensions.html}Maven 3 lifecycle extensions}} 34 | 35 | [] 36 | -------------------------------------------------------------------------------- /content/apt/guides/mini/guide-bash-m2-completion.apt: -------------------------------------------------------------------------------- 1 | ------ 2 | Guide to Maven auto completion using BASH 3 | ------ 4 | Trygve Laugstol 5 | Jason van Zyl 6 | Karl Heinz Marbaise 7 | ------ 8 | 2016-01-24 9 | ------ 10 | 11 | ~~ Licensed to the Apache Software Foundation (ASF) under one 12 | ~~ or more contributor license agreements. See the NOTICE file 13 | ~~ distributed with this work for additional information 14 | ~~ regarding copyright ownership. The ASF licenses this file 15 | ~~ to you under the Apache License, Version 2.0 (the 16 | ~~ "License"); you may not use this file except in compliance 17 | ~~ with the License. You may obtain a copy of the License at 18 | ~~ 19 | ~~ http://www.apache.org/licenses/LICENSE-2.0 20 | ~~ 21 | ~~ Unless required by applicable law or agreed to in writing, 22 | ~~ software distributed under the License is distributed on an 23 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 24 | ~~ KIND, either express or implied. See the License for the 25 | ~~ specific language governing permissions and limitations 26 | ~~ under the License. 27 | 28 | ~~ NOTE: For help with the syntax of this file, see: 29 | ~~ http://maven.apache.org/doxia/references/apt-format.html 30 | 31 | Guide to Maven auto completion using BASH 32 | 33 | If you like having bash completion which i can recommend if you are working 34 | with Maven on command line i would suggest to install 35 | the following {{{https://github.com/juven/maven-bash-completion}Maven Bash Auto Completion}} 36 | to fullfil you needs. 37 | 38 | -------------------------------------------------------------------------------- /content/apt/guides/mini/guide-manifest.apt: -------------------------------------------------------------------------------- 1 | ------ 2 | Guide to Working with Manifests 3 | ------ 4 | Jason van Zyl 5 | Dennis Lundberg 6 | ------ 7 | 2010-08-19 8 | ------ 9 | 10 | ~~ Licensed to the Apache Software Foundation (ASF) under one 11 | ~~ or more contributor license agreements. See the NOTICE file 12 | ~~ distributed with this work for additional information 13 | ~~ regarding copyright ownership. The ASF licenses this file 14 | ~~ to you under the Apache License, Version 2.0 (the 15 | ~~ "License"); you may not use this file except in compliance 16 | ~~ with the License. You may obtain a copy of the License at 17 | ~~ 18 | ~~ http://www.apache.org/licenses/LICENSE-2.0 19 | ~~ 20 | ~~ Unless required by applicable law or agreed to in writing, 21 | ~~ software distributed under the License is distributed on an 22 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 23 | ~~ KIND, either express or implied. See the License for the 24 | ~~ specific language governing permissions and limitations 25 | ~~ under the License. 26 | 27 | ~~ NOTE: For help with the syntax of this file, see: 28 | ~~ http://maven.apache.org/doxia/references/apt-format.html 29 | 30 | Guide to Working with Manifests 31 | 32 | In order to modify the manifest of the archive produced by the packaging 33 | plug-ins you need to create a configuration for it. The definitive guide for 34 | this is {{{/shared/maven-archiver/index.html}the site for the Maven Archiver shared component}}. 35 | This component is used by all our packaging plugins. 36 | 37 | 38 | ~~ suggestion by jorg 39 | ~~ it would be nice if the Specification-Version could be easily generated to be major.minor of pom.currentVersion i.e. that 40 | ~~ 41 | ~~ 1.2 ==> 1.2 42 | ~~ 1.2.1 ==> 1.2 43 | ~~ 1.2-SNAPSHOT ==> 1.2 44 | ~~ for the javaapp-plugin I did something like this in Jelly ... 45 | -------------------------------------------------------------------------------- /content/apt/guides/mini/guide-new-committers.apt: -------------------------------------------------------------------------------- 1 | ------ 2 | Guide for new committers 3 | ------ 4 | Jason van Zyl 5 | ------ 6 | 2005-11-20 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Guide for new committers 30 | 31 | First thing is to sort out some administrative tasks. Before your account 32 | is created and commit access granted you must complete and fax back to 33 | Apache the {{{http://www.apache.org/licenses/#clas}Committer's License 34 | Agreement}}. 35 | 36 | While this process is sorting itself out it is recommended that you peruse 37 | the various guides provided by Apache. All the guides are located in the 38 | {{{http://www.apache.org/dev/}Development Infrastructure Information}}. 39 | 40 | Of particular interest is the {{{http://www.apache.org/dev/committers.html}Committer's FAQ}} and the 41 | {{{http://www.apache.org/dev/new-committers-guide.html}New Committer's Guide}}. 42 | 43 | If you have any questions please feel free to ask any of the Maven 44 | developers. 45 | 46 | -------------------------------------------------------------------------------- /content/apt/guides/mini/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Maven Mini Guides 3 | ------ 4 | Jason van Zyl 5 | ------ 6 | 2005-10-12 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven Mini Guides 30 | 31 | #set( $prefix = '.' ) 32 | #parse( "index.txt" ) 33 | -------------------------------------------------------------------------------- /content/apt/guides/mini/index.txt: -------------------------------------------------------------------------------- 1 | ~~ Licensed to the Apache Software Foundation (ASF) under one 2 | ~~ or more contributor license agreements. See the NOTICE file 3 | ~~ distributed with this work for additional information 4 | ~~ regarding copyright ownership. The ASF licenses this file 5 | ~~ to you under the Apache License, Version 2.0 (the 6 | ~~ "License"); you may not use this file except in compliance 7 | ~~ with the License. You may obtain a copy of the License at 8 | ~~ 9 | ~~ http://www.apache.org/licenses/LICENSE-2.0 10 | ~~ 11 | ~~ Unless required by applicable law or agreed to in writing, 12 | ~~ software distributed under the License is distributed on an 13 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | ~~ KIND, either express or implied. See the License for the 15 | ~~ specific language governing permissions and limitations 16 | ~~ under the License. 17 | 18 | * {{{$prefix/guide-reproducible-builds.html}Configuring for Reproducible Builds}} 19 | 20 | * {{{$prefix/guide-assemblies.html}Creating Assemblies}} 21 | 22 | * {{{$prefix/guide-archive-configuration.html}Configuring Archive Plugins}} 23 | 24 | * {{{$prefix/guide-configuring-maven.html}Configuring Maven}} 25 | 26 | * {{{$prefix/guide-generating-sources.html}Generating Sources}} 27 | 28 | * {{{$prefix/guide-manifest.html}Working with Manifests}} 29 | 30 | * {{{$prefix/guide-maven-classloading.html}Maven Classloading}} 31 | 32 | * {{{$prefix/guide-multiple-modules.html}Using Multiple Modules in a Build}} 33 | 34 | * {{{$prefix/guide-releasing.html}Using the Release Plugin}} 35 | 36 | * {{{$prefix/guide-using-ant.html}Using Ant with Maven}} 37 | 38 | * {{{$prefix/guide-using-modello.html}Using Modello}} 39 | 40 | * {{{$prefix/guide-using-extensions.html}Using Extensions}} 41 | 42 | * {{{$prefix/guide-building-for-different-environments.html}Building For Different Environments}} 43 | 44 | * {{{$prefix/guide-using-toolchains.html}Using Toolchains}} 45 | 46 | * {{{/examples/injecting-properties-via-settings.html}Injecting POM Properties via settings.xml}} 47 | 48 | ~~ ** Testing 49 | 50 | ~~ * {{{$prefix/guide-attached-tests.html}Reusable Test JARs}} 51 | -------------------------------------------------------------------------------- /content/apt/guides/plugin/notes.txt: -------------------------------------------------------------------------------- 1 | Packaging plugins are required to call project.getArtifact().setFile( 2 | fileYouGenerated ) to properly work in the reactor. 3 | 4 | o configuration at 5 | plugin-level 6 | execution-level 7 | -------------------------------------------------------------------------------- /content/apt/plugin-developers/cookbook/index.apt: -------------------------------------------------------------------------------- 1 | ----- 2 | Plugins Cookbook 3 | ----- 4 | Brett Porter 5 | Vincent Siveton 6 | ----- 7 | 2009-08-02 8 | ------ 9 | 10 | ~~ Licensed to the Apache Software Foundation (ASF) under one 11 | ~~ or more contributor license agreements. See the NOTICE file 12 | ~~ distributed with this work for additional information 13 | ~~ regarding copyright ownership. The ASF licenses this file 14 | ~~ to you under the Apache License, Version 2.0 (the 15 | ~~ "License"); you may not use this file except in compliance 16 | ~~ with the License. You may obtain a copy of the License at 17 | ~~ 18 | ~~ http://www.apache.org/licenses/LICENSE-2.0 19 | ~~ 20 | ~~ Unless required by applicable law or agreed to in writing, 21 | ~~ software distributed under the License is distributed on an 22 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 23 | ~~ KIND, either express or implied. See the License for the 24 | ~~ specific language governing permissions and limitations 25 | ~~ under the License. 26 | 27 | ~~ NOTE: For help with the syntax of this file, see: 28 | ~~ http://maven.apache.org/doxia/references/apt-format.html 29 | 30 | Maven Extensions Cookbook 31 | 32 | Extensions are based on components, defined either with Plexus or JSR-330: 33 | 34 | * {{{./plexus-plugin-upgrade.html}How to upgrade from Plexus javadoc tags to Plexus Java annotations?}} 35 | 36 | * {{{/maven-jsr330.html}Using JSR-330 (instead of Plexus Java annotations)}} 37 | 38 | [] 39 | -------------------------------------------------------------------------------- /content/apt/users/index.apt: -------------------------------------------------------------------------------- 1 | ----- 2 | Users Centre 3 | ----- 4 | Brett Porter 5 | ----- 6 | 2006-11-03 7 | ----- 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ https://maven.apache.org/doxia/references/apt-format.html 28 | 29 | Maven Users Centre 30 | 31 | This documentation centre is for those that have decided to use Maven to build their project, and would like to get 32 | started quickly, or are already using Maven and would like to add new functionality or fix a problem in their build. 33 | 34 | ~~TODO: tasks as buttons? 35 | 36 | * {{{../download.html} Download Maven}} - Download the latest version of Maven 37 | 38 | * {{{../guides/getting-started/maven-in-five-minutes.html} The 5 minute test}} - Learn how to use Maven in 5 minutes 39 | 40 | * {{{../guides/getting-started/index.html} Getting Started Tutorial}} - An in depth tutorial once you've learned the basics 41 | 42 | * {{{./getting-help.html} Getting Help}} - How to get help with Maven 43 | 44 | ~~TODO: old getting started guide should become a beginners trail, and remove content covered in the 5 minute tutorial 45 | 46 | ~~TODO: link to repository centre and plugin developers centre, and the reasons why they would progress there 47 | 48 | * Maven 4 49 | 50 | * {{{/whatsnewinmaven4.html} What's new in Maven 4?}} - Compact overview about all changes of Maven 4 51 | 52 | * {{{../guides/mini/guide-migration-to-mvn4.html} Migrate to Maven 4}} - Learn how to migrate projects to Maven 4 53 | 54 | 55 | 56 | * Reference 57 | 58 | * {{{../pom.html} POM Reference}} 59 | 60 | * {{{../settings.html} Settings Reference}} 61 | 62 | -------------------------------------------------------------------------------- /content/filtered-resources/.well-known/atproto-did: -------------------------------------------------------------------------------- 1 | did:plc:nufqi3r2oz5m3lbshpiy3gn2 2 | -------------------------------------------------------------------------------- /content/filtered-resources/.well-known/security.txt: -------------------------------------------------------------------------------- 1 | Contact: mailto:security@apache.org 2 | Contact: mailto:private@maven.apache.org 3 | Expires: ${maven.security.expires} 4 | Preferred-Languages: en 5 | Policy: https://www.apache.org/security/ 6 | -------------------------------------------------------------------------------- /content/markdown/code-quality-management.md: -------------------------------------------------------------------------------- 1 | # Code Quality Management 2 | 3 | 21 | 22 | Some existing Maven plugins use code analysis technologies (like 23 | [Checkstyle][Checkstyle], [PMD][PMD], [JDepend][JDepend], ...) to generate various quality reports. This 24 | page lists technologies and platforms that know how to aggregate all 25 | this information to offer enhanced quality management functionalities. 26 | 27 | ## Quality management technologies and platforms 28 | 29 | Following is an alphabetical list of those we've heard mentioned around 30 | the Maven community: 31 | 32 | - [Hudson](https://hudson-ci.org) 33 | - [Jenkins](https://jenkins-ci.org) 34 | - [SonarQube](http://www.sonarqube.org/) 35 | - [Squale](http://www.squale.org/) 36 | - [XRadar](http://xradar.sourceforge.net) 37 | 38 | [PMD]: https://maven.apache.org/plugins/maven-pmd-plugin/ 39 | [Checkstyle]: https://maven.apache.org/plugins/maven-checkstyle-plugin/ 40 | [JDepend]: https://mojohaus.org/jdepend-maven-plugin/ 41 | 42 | -------------------------------------------------------------------------------- /content/markdown/docs/3.8.6/release-notes.md: -------------------------------------------------------------------------------- 1 | 22 | 23 | # Release Notes – Maven 3.8.6 24 | 25 | The Apache Maven team would like to announce the release of Maven 3.8.6. 26 | 27 | Maven 3.8.6 is [available for download][0]. 28 | 29 | Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting, and documentation from a central place. 30 | 31 | The core release is independent of plugin releases. Further releases of plugins will be made separately. See the [PluginList][1] for more information. 32 | 33 | If you have any questions, please consult: 34 | 35 | - the web site: [https://maven.apache.org/][2] 36 | - the maven-user mailing list: [https://maven.apache.org/mailing-lists.html](/mailing-lists.html) 37 | - the reference documentation: [https://maven.apache.org/ref/3.8.6/](/ref/3.8.6/) 38 | 39 | ## Overview About the Changes 40 | 41 | * Regression fixes from Maven 3.8.5 42 | * Improve locking for multithreaded builds 43 | 44 | The full list of changes can be found in our [issue management system][4]. 45 | 46 | ## Known Issues 47 | 48 | *none* 49 | 50 | ## Complete Release Notes 51 | 52 | See [complete release notes for all versions][5] 53 | 54 | [0]: ../../download.html 55 | [1]: ../../plugins/index.html 56 | [2]: https://maven.apache.org/ 57 | [4]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12351556 58 | [5]: ../../docs/history.html 59 | 60 | -------------------------------------------------------------------------------- /content/markdown/docs/3.8.7/release-notes.md: -------------------------------------------------------------------------------- 1 | 22 | 23 | # Release Notes – Maven 3.8.7 24 | 25 | The Apache Maven team would like to announce the release of Maven 3.8.7. 26 | 27 | Maven 3.8.7 is [available for download][0]. 28 | 29 | Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting, and documentation from a central place. 30 | 31 | The core release is independent of plugin releases. Further releases of plugins will be made separately. See the [PluginList][1] for more information. 32 | 33 | If you have any questions, please consult: 34 | 35 | - the web site: [https://maven.apache.org/][2] 36 | - the maven-user mailing list: [https://maven.apache.org/mailing-lists.html](/mailing-lists.html) 37 | - the reference documentation: [https://maven.apache.org/ref/3.8.7/](/ref/3.8.7/) 38 | 39 | ## Overview About the Changes 40 | 41 | * Regression fixes from Maven 3.8.6 42 | * General fixes 43 | * Maven Wagon upgrade 44 | 45 | The full list of changes can be found in our [issue management system][4]. 46 | 47 | ## Known Issues 48 | 49 | *none* 50 | 51 | ## Complete Release Notes 52 | 53 | See [complete release notes for all versions][5] 54 | 55 | [0]: ../../download.html 56 | [1]: ../../plugins/index.html 57 | [2]: https://maven.apache.org/ 58 | [4]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12352690 59 | [5]: ../../docs/history.html 60 | 61 | -------------------------------------------------------------------------------- /content/markdown/docs/3.8.8/release-notes.md: -------------------------------------------------------------------------------- 1 | 22 | 23 | # Release Notes – Maven 3.8.8 24 | 25 | The Apache Maven team would like to announce the release of Maven 3.8.8. 26 | 27 | Maven 3.8.8 is [available for download][0]. 28 | 29 | Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting, and documentation from a central place. 30 | 31 | The core release is independent of plugin releases. Further releases of plugins will be made separately. See the [PluginList][1] for more information. 32 | 33 | If you have any questions, please consult: 34 | 35 | - the web site: [https://maven.apache.org/][2] 36 | - the maven-user mailing list: [https://maven.apache.org/mailing-lists.html](/mailing-lists.html) 37 | - the reference documentation: [https://maven.apache.org/ref/3.8.8/](/ref/3.8.8/) 38 | 39 | ## Overview About the Changes 40 | 41 | * Regression fixes from Maven 3.8.7 42 | * General fixes 43 | * Non-functional backports and improvements from 3.9.0 44 | 45 | The full list of changes can be found in our [issue management system][4]. 46 | 47 | ## Known Issues 48 | 49 | *none* 50 | 51 | ## Complete Release Notes 52 | 53 | See [complete release notes for all versions][5] 54 | 55 | [0]: ../../download.html 56 | [1]: ../../plugins/index.html 57 | [2]: https://maven.apache.org/ 58 | [4]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12352869 59 | [5]: ../../docs/history.html 60 | 61 | -------------------------------------------------------------------------------- /content/markdown/issue-management.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | 21 | 22 | Maven projects use [Jira](https://www.atlassian.com/software/jira) as issue tracking and project management application. 23 | 24 | ## Issue Management 25 | 26 | Maven is composed of nearly [100 parts](/scm.html#Maven_Sources_Overview), each one having its own Jira project or component: 27 | **see the [Maven Jira issues overview](https://cwiki.apache.org/confluence/display/MAVEN/Maven+JIRA+issues+overview) to get a summary of open issues**. 28 | 29 | Issues, bugs, and feature requests should be submitted to the following 30 | issue management systems depending on which component is involved: 31 | 32 | * Maven "core": 33 | 34 | * Maven Website: 35 | 36 | * Maven Plugins: Please refer to the [Available Plugins](./plugins/index.html) page 37 | 38 | * Maven Shared Components: Please refer to the [Shared Components](./shared/index.html) page 39 | 40 | * Doxia: 41 | 42 | * JXR: 43 | 44 | * SCM: 45 | 46 | * Wagon: 47 | 48 | or for Central Repository: 49 | -------------------------------------------------------------------------------- /content/markdown/maven-1.x-eol.md: -------------------------------------------------------------------------------- 1 | # End Of Life Apache Maven 1.x 2 | 3 | 21 | 22 | The Apache Maven Project Team would like to inform you that the Apache 23 | Maven 1.x has reached its end of life and is no longer supported. 24 | 25 | Apache Maven 1.x had its last release - version 1.1 - in June 2007. 26 | 27 | This means: 28 | 29 | - security vulnerability reports will not be checked against the 1.x 30 | branch 31 | - the 1.x download pages will be removed. 32 | - the latest 1.x release will be removed from the mirror system 33 | - the 1.x branch in svn will move from /maven/maven-1/ to 34 | /maven/archives/maven-1/ 35 | - the links to the 1.x documentation will be moved from 36 | https://maven.apache.org/maven-1.x/ to 37 | https://maven.apache.org/archives/maven-1.x/ 38 | 39 | The Apache Maven Team. 40 | 41 | -------------------------------------------------------------------------------- /content/markdown/mvnd.md: -------------------------------------------------------------------------------- 1 | # Maven Daemon 2 | 3 | 21 | 22 | The Maven Daemon (mvnd) is a daemon infrastructure for Maven that helps to reduce the build time by: 23 | - Keeping the JVM running between builds 24 | - Managing a pool of Maven processes 25 | - Reusing the JVM and Maven processes across builds 26 | 27 | ## Features 28 | 29 | - Significantly faster builds compared to regular Maven 30 | - Compatible with existing Maven plugins and extensions 31 | - Daemon process management 32 | - Intelligent memory management 33 | - Native executable available 34 | 35 | ## Installation 36 | 37 | You can download Maven Daemon from our [download page](/download.html#Maven_Daemon). 38 | 39 | For more detailed information and documentation, visit the [Maven Daemon GitHub repository](https://github.com/apache/maven-mvnd). 40 | 41 | ## Usage 42 | 43 | Instead of using the `mvn` command, use `mvnd`: 44 | 45 | ```bash 46 | mvnd clean verify 47 | ``` 48 | 49 | The daemon will stay alive in the background, ready to process subsequent builds much faster. 50 | -------------------------------------------------------------------------------- /content/markdown/privacy-policy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | 21 | 22 | Information about your use of this website is collected using server 23 | access logs and a tracking cookie. The collected information consists of 24 | the following: 25 | 26 | 1. The IP address from which you access the website; 27 | 2. The type of browser and operating system you use to access our site; 28 | 3. The date and time you access our site; 29 | 4. The pages you visit; and 30 | 5. The addresses of pages from where you followed a link to our site. 31 | 32 | Part of this information is gathered using a tracking cookie set by the 33 | [Google Analytics](https://www.google.com/analytics/) service and handled 34 | by Google as described in their [privacy 35 | policy](https://www.google.com/privacy.html). See your browser 36 | documentation for instructions on how to disable the cookie if you 37 | prefer not to share this data with Google. 38 | 39 | We use the gathered information to help us make our site more useful to 40 | visitors and to better understand how and when our site is used. We do 41 | not track or collect personally identifiable information or associate 42 | gathered data with any personally identifying information from other 43 | sources. 44 | 45 | By using this website, you consent to the collection of this data in the 46 | manner and for the purpose described above. 47 | 48 | -------------------------------------------------------------------------------- /content/markdown/reference/maven-classloading.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/markdown/reference/maven-classloading.odg -------------------------------------------------------------------------------- /content/markdown/reference/maven-classloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/markdown/reference/maven-classloading.png -------------------------------------------------------------------------------- /content/markdown/release-notes-all.md.vm: -------------------------------------------------------------------------------- 1 | # Release Notes 2 | 20 | $esc.h$esc.h Release Notes 21 | 22 | See [Maven Releases History](docs/history.html) for more friendly view. 23 | 24 | Release notes list: 25 | 26 | #foreach ($v in $versions3x.split(",")) 27 | * [Release notes for Maven $v](docs/$v/release-notes.html) 28 | #end 29 | #foreach ($v in $versions2x.split(",")) 30 | * [Release notes for Maven $v](docs/$v/release-notes.html) 31 | #end 32 | 33 | -------------------------------------------------------------------------------- /content/markdown/repository/maven-central-repository.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/markdown/repository/maven-central-repository.odg -------------------------------------------------------------------------------- /content/markdown/repository/maven-repositories.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/markdown/repository/maven-repositories.odg -------------------------------------------------------------------------------- /content/markdown/run.md: -------------------------------------------------------------------------------- 1 | # Running Apache Maven 2 | 3 | 21 | 22 | The syntax for running Maven is as follows: 23 | 24 | mvn [options] [] [] 25 | 26 | All available options are documented in the built-in help that you can access with 27 | 28 | mvn -h 29 | 30 | The typical invocation for building a Maven project uses a Maven lifecycle phase. E.g. 31 | 32 | mvn verify 33 | 34 | The built-in lifecycles and their most used phases, in order, are: 35 | 36 | * clean - `clean` 37 | 38 | * default - `validate`, `compile`, `test`, `package`, `verify`, `install`, `deploy` 39 | 40 | * site - `site`, `site-deploy` 41 | 42 | A fresh build of a project generating all packaged outputs and the documentation site 43 | and deploying it to a repository manager could be done with 44 | 45 | mvn clean deploy site-deploy 46 | 47 | Just creating the package and installing it in the local repository for re-use from other projects can be done with 48 | 49 | mvn install 50 | 51 | And if you don't expect to re-use from other projects, use 52 | 53 | mvn verify 54 | 55 | This is the most common build invocation for a Maven project. 56 | 57 | When not working with a project, and in some other use cases, you might want to invoke 58 | a specific task implemented by a part of Maven - this is called a **goal** of a plugin. 59 | E.g.: 60 | 61 | mvn archetype:generate 62 | 63 | or 64 | 65 | mvn checkstyle:check 66 | 67 | There are many different [plugins available](/plugins/) and they all implement different goals. 68 | 69 | Further resources: 70 | 71 | * [Building a Project with Maven](./run-maven/index.html) 72 | 73 | -------------------------------------------------------------------------------- /content/markdown/testimonials.md: -------------------------------------------------------------------------------- 1 | # Testimonials 2 | 3 | 21 | 22 | Keep on going with Maven 2.0 as it really rocks! Yesterday, I started 23 | experimenting with it and it's such a breeze, I'm becoming already 24 | productive with Maven, converting our hand-written Ant scripts to POM 25 | (which means throwing most of the Ant stuff away and replacing it with 26 | tiny pom.xml files, actually). We have a web application consisting of 27 | many components which need to be configured for different environments 28 | and customers. After one day of work (including the learning curve) I 29 | already have the complete code base with \>1000 java files in \~20 30 | modules compiling. 31 | 32 | An hour ago or so after I finally got the Castor stuff working I began 33 | to see just how marvellous Maven works with my multi-module project. 34 | Seems you guys are able to keep the promises you make in the Maven 35 | introduction. :-) 36 | 37 | Once again, thanks for creating this great tool! 38 | 39 | -- *Christoph Schonfeld* 40 | 41 | -------------------------------------------------------------------------------- /content/markdown/tools/index.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | Maven Tools 22 | 23 | 24 | # Maven Tools 25 | 26 | The pages in this section will give information about additional Maven tools, which can help to improve your build. 27 | 28 | ## Supported By The Maven Project 29 | 30 | | Name | Description | Link | 31 | |:-------------|:--------------------------------------------------------------------------------------------------|:------------| 32 | | Maven Daemon | This project aims at providing faster Maven builds using techniques known from Gradle and Takari. | [Github][1] | 33 | 34 | [1]: https://github.com/apache/maven-mvnd 35 | 36 | -------------------------------------------------------------------------------- /content/resources/ant/build-a1.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /content/resources/ant/build-a2.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /content/resources/ant/build-a3.xml: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /content/resources/archives/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components/ 3 | maven-1.x ../components/archives/maven-1.x 4 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-ARCHETYPE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "ARCHETYPE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-DOXIA.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "DOXIA", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-DOXIASITETOOLS.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "DOXIASITETOOLS", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-DOXIATOOLS.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "DOXIATOOLS", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-JXR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "JXR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MACR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MACR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MANTRUN.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MANTRUN", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MARCHETYPES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MARCHETYPES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MARTIFACT.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MARTIFACT", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MASFRES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MASFRES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MASSEMBLY.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MASSEMBLY", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MBUILDCACHE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MBUILDCACHE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MCHANGELOG.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MCHANGELOG", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MCHANGES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MCHANGES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MCHECKSTYLE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MCHECKSTYLE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MCLEAN.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MCLEAN", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MCOMPILER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MCOMPILER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MDEP.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MDEP", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MDEPLOY.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MDEPLOY", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MDOAP.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MDOAP", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MDOCCK.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MDOCCK", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MEAR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MEAR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MEJB.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MEJB", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MENFORCER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MENFORCER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MGPG.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MGPG", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MINDEXER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MINDEXER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MINSTALL.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MINSTALL", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MINVOKER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MINVOKER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJAR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJAR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJARSIGNER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJARSIGNER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJAVADOC.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJAVADOC", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJDEPRSCAN.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJDEPRSCAN", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJDEPS.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJDEPS", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJLINK.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJLINK", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MJMOD.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MJMOD", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MLINKCHECK.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MLINKCHECK", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MNG.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MNG", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MNGSITE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MNGSITE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPATCH.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPATCH", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPDF.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPDF", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPH.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPH", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPIR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPIR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPLUGIN.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPLUGIN", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPLUGINTESTING.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPLUGINTESTING", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPMD", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MPOM.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MPOM", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MRAR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MRAR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MRELEASE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MRELEASE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MRESOLVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MRESOLVER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MRESOURCES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MRESOURCES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MRRESOURCES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MRRESOURCES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSCMPUB.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSCMPUB", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSCRIPTING.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSCRIPTING", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSHADE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSHADE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSHARED.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSHARED", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSITE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSITE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSKINS.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSKINS", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSOURCES.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSOURCES", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MSTAGE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MSTAGE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MTOOLCHAINS.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MTOOLCHAINS", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MVERIFIER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MVERIFIER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MWAR.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MWAR", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-MWRAPPER.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "MWRAPPER", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-SCM.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "SCM", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-SUREFIRE.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "SUREFIRE", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/asf_jira-WAGON.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "ASF Jira", 4 | "message": "WAGON", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/badges/ml-users.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "label": "email", 4 | "message": "users", 5 | "color": "orange" 6 | } 7 | -------------------------------------------------------------------------------- /content/resources/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components/ 3 | ant-tasks=components/ant-tasks 4 | ant-tasks-archives=components/ant-tasks-archives 5 | apache-resource-bundles=components/apache-resource-bundles 6 | apache-resource-bundles-archives=components/apache-resource-bundles-archives 7 | archetype-archives=components/archetype-archives 8 | archetype=components/archetype 9 | archetypes-archives=components/archetypes-archives 10 | archetypes=components/archetypes 11 | core-its=components/core-its 12 | enforcer-archives=components/enforcer-archives 13 | enforcer=components/enforcer 14 | extensions-archives=components/extensions-archives 15 | #extensions 16 | jxr-archives=components/jxr-archives 17 | jxr=components/jxr 18 | maven-eclipse-plugin=components/maven-eclipse-plugin 19 | maven-indexer-archives=components/maven-indexer-archives 20 | maven-indexer=components/maven-indexer 21 | maven-release-archives=components/maven-release-archives 22 | maven-release=components/maven-release 23 | plugin-testing-archives=components/plugin-testing-archives 24 | plugin-testing=components/plugin-testing 25 | plugin-tools-archives=components/plugin-tools-archives 26 | plugin-tools=components/plugin-tools 27 | plugins-archives=components/plugins-archives 28 | #plugins 29 | pom-archives=components/pom-archives 30 | #pom 31 | ref=components/ref 32 | resolver-ant-tasks=components/resolver-ant-tasks 33 | resolver-archives=components/resolver-archives 34 | resolver-demos=components/resolver-demos 35 | resolver=components/resolver 36 | sandbox=components/sandbox 37 | scm-archives=components/scm-archives 38 | scm=components/scm 39 | shared-archives=components/shared-archives 40 | #shared 41 | skins-archives=components/skins-archives 42 | #skins 43 | studies=components/studies 44 | surefire-archives=components/surefire-archives 45 | surefire=components/surefire 46 | wagon-archives=components/wagon-archives 47 | wagon=components/wagon 48 | wrapper-archives=components/wrapper-archives 49 | wrapper=components/wrapper 50 | -------------------------------------------------------------------------------- /content/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { 20 | background: none; 21 | padding-right: 0; 22 | } 23 | 24 | body ul { 25 | list-style-type: square; 26 | } 27 | 28 | #downloadbox { 29 | float: right; 30 | margin-left: 2em; 31 | padding-left: 1em; 32 | padding-right: 1em; 33 | padding-bottom: 1em; 34 | border: 1px solid #999; 35 | background-color: #eee; 36 | width: 17.5em; 37 | } 38 | 39 | #downloadbox h5 { 40 | color: #000; 41 | margin: 0; 42 | border-bottom: 1px solid #aaaaaa; 43 | font-size: smaller; 44 | padding: 0; 45 | margin-top: 1em; 46 | } 47 | 48 | #downloadbox p { 49 | margin-top: 1em; 50 | margin-bottom: 0; 51 | } 52 | 53 | #downloadbox li { 54 | text-indent: inherit; 55 | } 56 | 57 | -------------------------------------------------------------------------------- /content/resources/developers/.htaccess: -------------------------------------------------------------------------------- 1 | RedirectMatch permanent (.*)/developers/committer-testing-plugins.html $1/plugin-developers/plugin-testing.html 2 | RedirectMatch permanent (.*)/developers/committer-documentation-plugins.html $1/plugin-developers/plugin-documenting.html 3 | RedirectMatch permanent (.*)/developers/release/maven-proper-release.html $1/developers/release/maven-core-release.html 4 | RedirectMatch permanent (.*)/developers/release/apache-release.html $1/dev/publishing-maven-artifacts.html 5 | -------------------------------------------------------------------------------- /content/resources/developers/release/.htaccess: -------------------------------------------------------------------------------- 1 | RedirectMatch permanent (.*)/developers/committer-testing-plugins.html $1/plugin-developers/plugin-testing.html 2 | RedirectMatch permanent (.*)/developers/committer-documentation-plugins.html $1/plugin-developers/plugin-documenting.html 3 | -------------------------------------------------------------------------------- /content/resources/developers/website/component-reference-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/developers/website/component-reference-documentation.png -------------------------------------------------------------------------------- /content/resources/developers/website/main-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/developers/website/main-website.png -------------------------------------------------------------------------------- /content/resources/developers/website/website-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/developers/website/website-overview.png -------------------------------------------------------------------------------- /content/resources/extensions/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components 3 | #maven-build-cache-extension=../components/extensions/maven-build-cache-extension 4 | maven-build-cache-extension=../components/extensions-archives/maven-build-cache-extension-LATEST 5 | -------------------------------------------------------------------------------- /content/resources/guides/MavenQuickReferenceCard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/guides/MavenQuickReferenceCard.pdf -------------------------------------------------------------------------------- /content/resources/images/Close_Repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/Close_Repo.png -------------------------------------------------------------------------------- /content/resources/images/Promote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/Promote.png -------------------------------------------------------------------------------- /content/resources/images/Validate_Artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/Validate_Artifacts.png -------------------------------------------------------------------------------- /content/resources/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/add.gif -------------------------------------------------------------------------------- /content/resources/images/apache-maven-project-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/apache-maven-project-2.png -------------------------------------------------------------------------------- /content/resources/images/apache-maven-project-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/apache-maven-project-blue.png -------------------------------------------------------------------------------- /content/resources/images/apache-maven-project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/apache-maven-project.jpg -------------------------------------------------------------------------------- /content/resources/images/apache-maven-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/apache-maven-project.png -------------------------------------------------------------------------------- /content/resources/images/apache-maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/apache-maven.png -------------------------------------------------------------------------------- /content/resources/images/archiva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/archiva.png -------------------------------------------------------------------------------- /content/resources/images/asf_logo_wide_clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/asf_logo_wide_clear.gif -------------------------------------------------------------------------------- /content/resources/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/banner.jpg -------------------------------------------------------------------------------- /content/resources/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/bg.jpg -------------------------------------------------------------------------------- /content/resources/images/books/apache_maven_2_effective_implementation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/apache_maven_2_effective_implementation.jpg -------------------------------------------------------------------------------- /content/resources/images/books/apache_maven_3_0_cookbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/apache_maven_3_0_cookbook.jpg -------------------------------------------------------------------------------- /content/resources/images/books/apache_maven_cookbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/apache_maven_cookbook.jpg -------------------------------------------------------------------------------- /content/resources/images/books/better_builds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/better_builds.png -------------------------------------------------------------------------------- /content/resources/images/books/definitive_guide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/definitive_guide.jpg -------------------------------------------------------------------------------- /content/resources/images/books/developer_notebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/developer_notebook.gif -------------------------------------------------------------------------------- /content/resources/images/books/getting_started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/getting_started.png -------------------------------------------------------------------------------- /content/resources/images/books/pearson_apache_maven_fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/pearson_apache_maven_fr.jpg -------------------------------------------------------------------------------- /content/resources/images/books/pearson_apache_maven_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/books/pearson_apache_maven_fr.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_am_a_maven_committer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_am_a_maven_committer_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_am_a_maven_content_contributor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_am_a_maven_content_contributor_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_am_a_maven_contributor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_am_a_maven_contributor_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_am_a_proud_maven_user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_am_a_proud_maven_user_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_maintain_maven_plugins_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_maintain_maven_plugins_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/i_sumbitted_my_first_maven_pull_request_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/i_sumbitted_my_first_maven_pull_request_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/im_a_grateful_maven_user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/im_a_grateful_maven_user_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/im_a_happy_maven_user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/im_a_happy_maven_user_1.png -------------------------------------------------------------------------------- /content/resources/images/branding/my_first_maven_pr_was_merged_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/branding/my_first_maven_pr_was_merged_1.png -------------------------------------------------------------------------------- /content/resources/images/breadcrumbs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/breadcrumbs.jpg -------------------------------------------------------------------------------- /content/resources/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/close.gif -------------------------------------------------------------------------------- /content/resources/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/collapsed.gif -------------------------------------------------------------------------------- /content/resources/images/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/collapsed.png -------------------------------------------------------------------------------- /content/resources/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/expanded.gif -------------------------------------------------------------------------------- /content/resources/images/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/expanded.png -------------------------------------------------------------------------------- /content/resources/images/external-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/external-classic.png -------------------------------------------------------------------------------- /content/resources/images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/external.png -------------------------------------------------------------------------------- /content/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/favicon.ico -------------------------------------------------------------------------------- /content/resources/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/file.gif -------------------------------------------------------------------------------- /content/resources/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/fix.gif -------------------------------------------------------------------------------- /content/resources/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/folder-closed.gif -------------------------------------------------------------------------------- /content/resources/images/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/folder-open.gif -------------------------------------------------------------------------------- /content/resources/images/h3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/h3.gif -------------------------------------------------------------------------------- /content/resources/images/h3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/h3.jpg -------------------------------------------------------------------------------- /content/resources/images/h5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/h5.jpg -------------------------------------------------------------------------------- /content/resources/images/help_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/help_logo.gif -------------------------------------------------------------------------------- /content/resources/images/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_alert.gif -------------------------------------------------------------------------------- /content/resources/images/icon_alertsml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_alertsml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowfolder1_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowfolder1_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowfolder2_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowfolder2_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowfolderclosed1_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowfolderclosed1_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowfolderopen2_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowfolderopen2_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowmembers1_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowmembers1_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowmembers2_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowmembers2_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowusergroups1_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowusergroups1_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowusergroups2_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowusergroups2_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowwaste1_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowwaste1_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_arrowwaste2_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_arrowwaste2_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_confirmsml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_confirmsml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_doc_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_doc_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_doc_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_doc_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_error_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_error_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_error_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_folder_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_folder_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_folder_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_folder_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_help_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_help_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_help_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_help_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_info_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_info_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_info_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_infosml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_infosml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_members_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_members_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_members_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_members_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_sortdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_sortdown.gif -------------------------------------------------------------------------------- /content/resources/images/icon_sortleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_sortleft.gif -------------------------------------------------------------------------------- /content/resources/images/icon_sortright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_sortright.gif -------------------------------------------------------------------------------- /content/resources/images/icon_sortup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_sortup.gif -------------------------------------------------------------------------------- /content/resources/images/icon_success_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_success_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_success_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_usergroups_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_usergroups_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_usergroups_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_usergroups_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_warning_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_warning_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /content/resources/images/icon_waste_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_waste_lrg.gif -------------------------------------------------------------------------------- /content/resources/images/icon_waste_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/icon_waste_sml.gif -------------------------------------------------------------------------------- /content/resources/images/jakarta-logo-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/jakarta-logo-blue.gif -------------------------------------------------------------------------------- /content/resources/images/jakarta-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/jakarta-logo-blue.png -------------------------------------------------------------------------------- /content/resources/images/logo_apache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logo_apache.jpg -------------------------------------------------------------------------------- /content/resources/images/logo_maven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logo_maven.jpg -------------------------------------------------------------------------------- /content/resources/images/logos/build-by-maven-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/build-by-maven-black.png -------------------------------------------------------------------------------- /content/resources/images/logos/build-by-maven-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/build-by-maven-white.png -------------------------------------------------------------------------------- /content/resources/images/logos/logo_takari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/logo_takari.png -------------------------------------------------------------------------------- /content/resources/images/logos/logo_vogella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/logo_vogella.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-bolt.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-brewed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-brewed.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-build-successfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-build-successfull.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-built.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-built.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-bulldozer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-bulldozer.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-1.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-2.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-3.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-4.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-5.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-black.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-blue.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-copper.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-green.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-pinky.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-purple.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-button-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-button-teal.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-feather.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-frankenstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-frankenstein.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-inside.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-mavenfactured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-mavenfactured.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-petesucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-petesucks.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-propaganda-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-propaganda-2.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-propaganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-propaganda.png -------------------------------------------------------------------------------- /content/resources/images/logos/maven-redgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/logos/maven-redgreen.png -------------------------------------------------------------------------------- /content/resources/images/mascot-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/mascot-large.png -------------------------------------------------------------------------------- /content/resources/images/mascot-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/mascot-small.png -------------------------------------------------------------------------------- /content/resources/images/mascot-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/mascot-student.png -------------------------------------------------------------------------------- /content/resources/images/maven-1.x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-1.x.png -------------------------------------------------------------------------------- /content/resources/images/maven-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-blue.png -------------------------------------------------------------------------------- /content/resources/images/maven-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-console.png -------------------------------------------------------------------------------- /content/resources/images/maven-logo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-logo-2.gif -------------------------------------------------------------------------------- /content/resources/images/maven-logo-black-on-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-logo-black-on-white.png -------------------------------------------------------------------------------- /content/resources/images/maven-logo-white-on-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-logo-white-on-black.png -------------------------------------------------------------------------------- /content/resources/images/maven-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven-small.gif -------------------------------------------------------------------------------- /content/resources/images/maven.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven.gif -------------------------------------------------------------------------------- /content/resources/images/maven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven.jpg -------------------------------------------------------------------------------- /content/resources/images/maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maven.png -------------------------------------------------------------------------------- /content/resources/images/maventxt_logo_200-2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maventxt_logo_200-2.ai -------------------------------------------------------------------------------- /content/resources/images/maventxt_logo_200.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maventxt_logo_200.ai -------------------------------------------------------------------------------- /content/resources/images/maventxt_logo_200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/maventxt_logo_200.gif -------------------------------------------------------------------------------- /content/resources/images/newwindow-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/newwindow-classic.png -------------------------------------------------------------------------------- /content/resources/images/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/newwindow.png -------------------------------------------------------------------------------- /content/resources/images/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/none.png -------------------------------------------------------------------------------- /content/resources/images/nw_maj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_maj.gif -------------------------------------------------------------------------------- /content/resources/images/nw_maj_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_maj_hi.gif -------------------------------------------------------------------------------- /content/resources/images/nw_maj_rond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_maj_rond.gif -------------------------------------------------------------------------------- /content/resources/images/nw_med.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_med.gif -------------------------------------------------------------------------------- /content/resources/images/nw_med_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_med_hi.gif -------------------------------------------------------------------------------- /content/resources/images/nw_med_rond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_med_rond.gif -------------------------------------------------------------------------------- /content/resources/images/nw_min.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_min.gif -------------------------------------------------------------------------------- /content/resources/images/nw_min_036.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_min_036.gif -------------------------------------------------------------------------------- /content/resources/images/nw_min_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/nw_min_hi.gif -------------------------------------------------------------------------------- /content/resources/images/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/pdf.gif -------------------------------------------------------------------------------- /content/resources/images/poweredby_036.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/poweredby_036.gif -------------------------------------------------------------------------------- /content/resources/images/product_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/product_logo.gif -------------------------------------------------------------------------------- /content/resources/images/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/remove.gif -------------------------------------------------------------------------------- /content/resources/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/rss.png -------------------------------------------------------------------------------- /content/resources/images/se_maj_rond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/se_maj_rond.gif -------------------------------------------------------------------------------- /content/resources/images/strich.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/strich.gif -------------------------------------------------------------------------------- /content/resources/images/sw_maj_rond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/sw_maj_rond.gif -------------------------------------------------------------------------------- /content/resources/images/sw_med_rond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/sw_med_rond.gif -------------------------------------------------------------------------------- /content/resources/images/sw_min.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/sw_min.gif -------------------------------------------------------------------------------- /content/resources/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/images/update.gif -------------------------------------------------------------------------------- /content/resources/maven-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/maven-sources.png -------------------------------------------------------------------------------- /content/resources/pdf-config.xml: -------------------------------------------------------------------------------- 1 | 19 | 23 | 24 | 25 | scale-down-to-fit 26 | scale-down-to-fit 27 | 100% 28 | 100% 29 | 30 | 31 | 32 | monospace 33 | no-wrap 34 | auto 35 | false 36 | 37 | 38 | 39 | 9pt 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /content/resources/pom/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components 3 | asf=../components/pom/asf 4 | maven-plugins=../components/pom/maven-plugins 5 | maven-shared-components=../components/pom/maven-shared-components 6 | maven=../components/pom/maven 7 | skins=../components/pom/skins 8 | -------------------------------------------------------------------------------- /content/resources/repository/maven-central-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/repository/maven-central-repository.png -------------------------------------------------------------------------------- /content/resources/repository/maven-repositories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-site/73355df2c7e5e7de3dcae7d83cadca3ba810b092/content/resources/repository/maven-repositories.png -------------------------------------------------------------------------------- /content/resources/shared/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components 3 | file-management=../components/shared/file-management 4 | maven-archiver=../components/shared/maven-archiver 5 | maven-artifact-resolver=../components/shared/maven-artifact-resolver 6 | maven-artifact-transfer=../components/shared/maven-artifact-transfer 7 | maven-common-artifact-filters=../components/shared/maven-common-artifact-filters 8 | maven-dependency-analyzer=../components/shared/maven-dependency-analyzer 9 | maven-dependency-tree=../components/shared/maven-dependency-tree 10 | maven-downloader=../components/shared/maven-downloader 11 | maven-doxia-tools=../components/shared/maven-doxia-tools 12 | maven-enforcer-rule-api=../components/shared/maven-enforcer-rule-api 13 | maven-filtering=../components/shared/maven-filtering 14 | maven-invoker=../components/shared/maven-invoker 15 | maven-jarsigner=../components/shared/maven-jarsigner 16 | maven-mapping=../components/shared/maven-mapping 17 | maven-model-converter=../components/shared/maven-model-converter 18 | maven-osgi=../components/shared/maven-osgi 19 | maven-plugin-helper=../components/shared/maven-plugin-helper 20 | maven-plugin-testing-harness=../components/shared/maven-plugin-testing-harness 21 | maven-plugin-testing-tools=../components/shared/maven-plugin-testing-tools 22 | maven-plugin-tools=../components/shared/maven-plugin-tools 23 | maven-reporting-api=../components/shared/maven-reporting-api 24 | maven-reporting-exec=../components/shared/maven-reporting-exec 25 | maven-reporting-impl=../components/shared/maven-reporting-impl 26 | maven-repository-builder=../components/shared/maven-repository-builder 27 | maven-runtime=../components/shared/maven-runtime 28 | maven-script-interpreter=../components/shared/maven-script-interpreter 29 | maven-shared-incremental=../components/shared/maven-shared-incremental 30 | maven-shared-io=../components/shared/maven-shared-io 31 | maven-shared-jar=../components/shared/maven-shared-jar 32 | maven-shared-resources=../components/shared/maven-shared-resources 33 | maven-shared-utils=../components/shared/maven-shared-utils 34 | maven-test-tools=../components/shared/maven-test-tools 35 | maven-verifier=../components/shared/maven-verifier 36 | -------------------------------------------------------------------------------- /content/resources/skins/components.links: -------------------------------------------------------------------------------- 1 | # links property file for Ant's symlink task in pom.xml: 2 | # links to components in https://maven.apache.org/components 3 | maven-application-skin=../components/skins/maven-application-skin 4 | maven-classic-skin=../components/skins/maven-classic-skin 5 | maven-default-skin=../components/skins/maven-default-skin 6 | maven-fluido-skin=../components/skins/maven-fluido-skin 7 | maven-stylus-skin=../components/skins/maven-stylus-skin 8 | -------------------------------------------------------------------------------- /content/resources/xsd/.htaccess: -------------------------------------------------------------------------------- 1 | Redirect /xsd/core-extensions-1.2.0.xsd /xsd/core-extensions-1.2.0-rc-3.xsd 2 | Redirect /xsd/lifecycle-2.0.0.xsd /xsd/lifecycle-2.0.0-rc-3.xsd 3 | Redirect /xsd/maven-4.1.0.xsd /xsd/maven-4.1.0-rc-3.xsd 4 | Redirect /xsd/plugin-2.0.0.xsd /xsd/plugin-2.0.0-rc-3.xsd 5 | Redirect /xsd/repository-metadata-1.2.0.xsd /xsd/repository-metadata-1.2.0-rc-3.xsd 6 | Redirect /xsd/settings-2.0.0.xsd /xsd/settings-2.0.0-rc-3.xsd 7 | Redirect /xsd/toolchains-1.1.0.xsd /xsd/toolchains-1.1.0-rc-3.xsd 8 | 9 | -------------------------------------------------------------------------------- /src/plantuml/buildExtensionClassRealm.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | Platform o-- Bootstrap 21 | Bootstrap "1" o-- "many" BuildExtension 22 | API "1" o-- "many" BuildExtension 23 | CoreExtension "many" o-- "1" API 24 | 25 | class Bootstrap { 26 | Plexus Classworlds 27 | } 28 | 29 | class CoreExtension { 30 | all packages defined in "/META-INF/maven/extension.xml" 31 | } 32 | 33 | class Platform { 34 | all JRE classes 35 | } 36 | 37 | class BuildExtension { 38 | dependencies 39 | classes 40 | } 41 | 42 | note right of API : Just composition of all Core Extensions 43 | note right of Bootstrap : ${maven.home}/boot 44 | note right of BuildExtension : Per GAV of plugin loaded with true or build extension 45 | @enduml 46 | -------------------------------------------------------------------------------- /src/plantuml/maven-sources/core.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | 21 | 27 | 28 | package "Maven Core" { 29 | rectangle Maven 30 | rectangle "Core ITs" 31 | rectangle Resolver 32 | rectangle "Ant Tasks" 33 | rectangle "Build Cache" 34 | rectangle "Daemon" 35 | rectangle "Wrapper" 36 | } 37 | 38 | 'hidden dependencies to change layout 39 | Maven -[hidden]right-> "Core ITs" 40 | "Core ITs" -[hidden]right-> Resolver 41 | Resolver -[hidden]right-> "Ant Tasks" 42 | "Ant Tasks" -[hidden]right-> "Build Cache" 43 | "Build Cache" -[hidden]right-> Daemon 44 | Daemon -[hidden]right-> Wrapper 45 | 46 | url of Maven is [[https://github.com/apache/maven]] 47 | url of "Core ITs" is [[https://github.com/apache/maven-integration-testing]] 48 | url of Resolver is [[https://github.com/apache/maven-resolver]] 49 | url of "Ant Tasks" is [[https://github.com/apache/maven-resolver-ant-tasks]] 50 | url of "Build Cache" is [[https://github.com/apache/maven-build-cache-extension]] 51 | url of Daemon is [[https://github.com/apache/maven-mvnd]] 52 | url of Wrapper is [[https://github.com/apache/maven-wrapper]] 53 | 54 | @enduml 55 | -------------------------------------------------------------------------------- /src/plantuml/maven-sources/doxia.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | 21 | 27 | 28 | package "Maven Doxia" { 29 | rectangle Doxia 30 | rectangle "Site Tools" 31 | rectangle Site #LightGrey 32 | package Tools { 33 | rectangle "Book Maven Plugin" 34 | rectangle "Book Renderer" 35 | rectangle Converter 36 | rectangle LinkCheck 37 | } 38 | } 39 | 40 | 'hidden dependencies to change layout 41 | Doxia -[hidden]right-> "Site Tools" 42 | "Site Tools" -[hidden]right-> Site 43 | "Site Tools" -[hidden]right-> Tools 44 | 45 | url of Doxia is [[https://github.com/apache/maven-doxia]] 46 | url of "Site Tools" is [[https://github.com/apache/maven-doxia-sitetools]] 47 | url of Site is [[https://github.com/apache/maven-doxia-site]] 48 | url of "Book Renderer" is [[https://github.com/apache/maven-doxia-book-renderer]] 49 | url of "Book Maven Plugin" is [[https://github.com/apache/maven-doxia-book-maven-plugin]] 50 | url of Converter is [[https://github.com/apache/maven-doxia-converter]] 51 | url of LinkCheck is [[https://github.com/apache/maven-doxia-linkcheck]] 52 | 53 | @enduml 54 | -------------------------------------------------------------------------------- /src/plantuml/maven-sources/plexus.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | 21 | 27 | 28 | package "Plexus" { 29 | rectangle "Utils" 30 | rectangle "Classworlds" 31 | rectangle "Modello" 32 | } 33 | 34 | 'hidden dependencies to change layout 35 | "Utils" -[hidden]right-> "Classworlds" 36 | "Classworlds" -[hidden]right-> "Modello" 37 | 38 | url of "Utils" is [[https://github.com/codehaus-plexus/plexus-utils]] 39 | url of "Classworlds" is [[https://github.com/codehaus-plexus/plexus-classworlds]] 40 | url of "Modello" is [[https://github.com/codehaus-plexus/modello]] 41 | 42 | @enduml 43 | -------------------------------------------------------------------------------- /src/plantuml/maven-sources/site.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | 21 | rectangle Site 22 | rectangle Sources #LightBlue 23 | 24 | url of Site is [[https://github.com/apache/maven-site]] 25 | url of Sources is [[https://github.com/apache/maven-sources]] 26 | 27 | @enduml 28 | -------------------------------------------------------------------------------- /src/plantuml/multi-subproject.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | 30 | 31 | 32 | rectangle parent { 33 | } 34 | 35 | rectangle "subproject-a" as subprojectA { 36 | } 37 | 38 | rectangle "subproject-b" as subprojectB { 39 | } 40 | rectangle "subproject-c" as subprojectC { 41 | } 42 | 43 | rectangle "subproject-c-1" as subprojectC1 { 44 | } 45 | 46 | rectangle "subproject-c-2" as subprojectC2 { 47 | } 48 | 49 | 50 | 51 | parent -[#orange]- subprojectA 52 | parent -[#orange]- subprojectB 53 | parent -[#orange]- subprojectC 54 | 55 | 56 | subprojectC -[#orange]- subprojectC1 57 | subprojectC -[#orange]- subprojectC2 58 | 59 | subprojectA <.[#green]right. subprojectB 60 | subprojectB <.[#green]. subprojectC2 61 | 62 | 'hidden dependencies to change layout 63 | subprojectB -[hidden]right-> subprojectC 64 | 65 | 66 | legend 67 | {{ 68 | !pragma layout smetana 69 | card Relations { 70 | together { 71 | rectangle c 72 | rectangle d 73 | c -[#orange,thickness=1]right- d : parent-child 74 | } 75 | 76 | together { 77 | rectangle a 78 | rectangle b 79 | a -[#green,dashed,thickness=1]right-> b : dependency 80 | } 81 | } 82 | }} 83 | end legend 84 | 85 | 86 | 87 | @enduml 88 | -------------------------------------------------------------------------------- /src/plantuml/pluginClassRealm.puml: -------------------------------------------------------------------------------- 1 | /' 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | '/ 19 | @startuml 20 | Platform o-- Bootstrap 21 | Bootstrap "1" o-- "many" Plugin 22 | API "1" o-- "many" Project 23 | CoreExtension "many" o-- "1" API 24 | Project "1" --o "many" Plugin 25 | BuildExtension "many" o-- "1"Project 26 | class Bootstrap { 27 | Plexus Classworlds 28 | } 29 | 30 | class CoreExtension { 31 | all packages defined in "/META-INF/maven/extension.xml" 32 | } 33 | 34 | class Platform { 35 | all JRE classes 36 | } 37 | 38 | class BuildExtension { 39 | dependencies 40 | classes 41 | } 42 | 43 | class Plugin { 44 | dependencies 45 | classes 46 | } 47 | 48 | note right of Plugin : Per GAV of plugin 49 | note right of Project : One per Maven POM 50 | note right of API : Just composition of all Core Extensions 51 | note right of Bootstrap : ${maven.home}/boot 52 | note right of BuildExtension : Per GAV of plugin loaded with true or build extension 53 | @enduml 54 | --------------------------------------------------------------------------------