blob: d934ae9c2162a3e58d39befa7da5a3f56243500e [file] [log] [blame]
------
Guide to uploading artifacts to the Central Repository
------
Jason van Zyl
Brian Fox
------
2018-12-31
------
~~ Licensed to the Apache Software Foundation (ASF) under one
~~ or more contributor license agreements. See the NOTICE file
~~ distributed with this work for additional information
~~ regarding copyright ownership. The ASF licenses this file
~~ to you under the Apache License, Version 2.0 (the
~~ "License"); you may not use this file except in compliance
~~ with the License. You may obtain a copy of the License at
~~
~~ http://www.apache.org/licenses/LICENSE-2.0
~~
~~ Unless required by applicable law or agreed to in writing,
~~ software distributed under the License is distributed on an
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~~ KIND, either express or implied. See the License for the
~~ specific language governing permissions and limitations
~~ under the License.
~~ NOTE: For help with the syntax of this file, see:
~~ http://maven.apache.org/doxia/references/apt-format.html
Guide to uploading artifacts to the Central Repository
In order for users of Maven to utilize artifacts produced by your project, you must deploy them to
a remote repository. Many open source projects want to allow users of their projects who build with
Maven to have transparent access to their project's artifacts. In order to allow for this, a project
must have their artifacts deployed to {{{/repository/}the Central Repository}}.
Requirements
[[1]] <<releases>>: Only <releases> can be uploaded to the Central Repository, that means files that won't change and that only depend on other files
already released and available in the repository,
[[2]] <<javadoc and sources>> for IDE lookup,
[[3]] <<PGP signature>>,
[[4]] <<minimum POM information>>: There are some requirements for the minimal information in the POMs that are in the Central Repository,
see {{{https://central.sonatype.org/pages/requirements.html#sufficient-metadata}here}},
[[5]] <<coordinates>>: Picking the appropriate coordinates for your project is important. See the guidelines
{{{https://central.sonatype.org/pages/choosing-your-coordinates.html}here}}, particularly
on {{{https://central.sonatype.org/pages/producers.html#individual-projects-open-source-software-repository-hosting-ossrh}groupId and domain ownership}}.
[]
The updated list of requirements can be found <<{{{https://central.sonatype.org/pages/requirements.html}here}}>>.
* Explanation
Some folks have asked <"why do we require all this information in the POM for deployed artifacts?">, so here's a small explanation.
The POM
being deployed with the artifact is part of the process to make transitive dependencies a reality in Maven. The logic for getting
transitive dependencies working is really not that hard, the problem is getting the data. The other applications
that are made possible by having all the POMs available for artifacts are vast, so by placing them into the Central Repository as part of the
process we open up the doors to new ideas that involve unified access to project POMs.
We ask for the license because it is possible that your project's license may change in the course of
its lifetime, and we are trying to create tools to help sort out licensing issues. For example, knowing all the licenses
for a particular graph of artifacts, we could have some strategies that would identify potential licensing problems.
* A basic sample:
+----+
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven</groupId>
<artifactId>maven</artifactId>
<version>2.0</version>
<packaging>jar</packaging>
<name>Maven core</name>
<description>The maven main core project description</description>
<url>http://maven.apache.org</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://svn.apache.org/viewvc/maven</url>
</scm>
<dependencies>
<dependency>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
</dependency>
...
</dependencies>
<!--
NOT RECOMMENDED: (see FAQ)
<repositories></repositories>
<pluginRepositories></pluginRepositories>
-->
</project>
+----+
* PGP Signature
When people download artifacts from the Central Repository, they might want to verify these artifacts' PGP
signatures against a public key server.
If there are no signatures, then users have no guarantee that they
are downloading the original artifact.
To improve the quality of the Central Repository, we require you to provide PGP signatures for all your artifacts (all
files except checksums), and distribute your public key to a key server like {{{http://pgp.mit.edu}http://pgp.mit.edu}}. Read
{{{http://central.sonatype.org/pages/working-with-pgp-signatures.html}Working with PGP Signatures}}
for more information.
* FAQ and common mistakes
* I have other <<<repositories>>> or <<<pluginRepositories>>> listed in my POM, is that a problem?
At present, this won't preclude your project from being included, but we do strongly encourage making sure all your dependencies
are included in the Central Repository. If you rely on sketchy repositories that have junk in them or disappear, it just creates havok for
downstream users. Try to keep your dependencies among reliable repos like Central, Jboss, etc.
* What about artifacts that can't be distributed because of their license?
In that case only the POM for that dependency is required, listing where the dependency can be downloaded from.
{{{https://repo.maven.apache.org/maven2/javax/activation/activation/1.0.2/activation-1.0.2.pom}See an example}}.
* I have a patched version of the foo project developed at foo.com, what <<<groupId>>> should I use?
When you patch / modify a third party project, that patched version becomes your project and therefore should be distributed under a <<<groupId>>> you control
as any project you would have developed, never under <<<com.foo>>>. See above considerations about <<<groupId>>>.
* My project is hosted at a project hosting service like SourceForge or Github, what should I use as groupId?
If your project name is <<<foo>>> at SourceForge, you can use <<<net.sf.foo>>>.
If your username is <<<bar>>> on Github, you can use <<<com.github.bar>>>.
You can also use another reversed domain name you control. The group ID does
not have to reflect the project host.
[]
Publishing your artifacts to the Central Repository
* Approved Repository Hosting
Instead of maintaining repository rsync feeds for each projects, we now encourage projects to use an approved repository hosting location.
Currently approved repository hosting locations:
* {{{http://www.apache.org/}Apache Software Foundation}} (for all Apache projects)
* {{{http://www.fusesource.org/forge/}FuseSource Forge}} (focused on FUSE related projects)
* {{{http://www.nuiton.org}Nuiton.org}}
[]
Automatic publication will be provided for Forges that provide hosting services for OSS projects and other large project repositories
that meet certain minimum criteria such as validation of PGP keys and pom contents as defined above. If you are interested in
becoming an approved Forge, contact us at <<<repo-maintainers@maven.apache.org>>>.
* Other Projects
The easiest way to upload another project is to use the
{{{http://central.sonatype.org/pages/ossrh-guide.html}Open Source Software Repository Hosting (OSSRH)}}, which is an approved repository provided
by Sonatype for <any> OSS Project that want to get their artifacts into the Central Repository.
* Explanations
Having each project maintain its own repository with rsync to the Central Repository was the preferred process until January 2010.
However, we are no longer accepting rsync requests on a per project basis.
Over time, we have learned that this process is not scalable. Many of the projects being synced release very infrequently, yet
we have to hit hundreds of servers several times a day looking for artifacts that don't change. Additionally, there is no good
mechanism currently for validating the incoming data via the rsync, and this leads to bad metadata that affects everyone.
The aggregation of projects into larger feeds allows us to sync faster and more often, and ensuring these locations
perform sufficient checks increases the quality of metadata for everyone.