A repository (definition) in Maven is used to hold build artifacts and dependencies of varying types.
There are strictly only two types of repositories: local and remote. The local repository refers to a copy on your own installation that is a cache of the remote downloads, and also contains the temporary build artifacts that you have not yet released.
Remote repositories refer to any other type of repository, accessed by a variety of protocols such as
file://
and http://
. These repositories might be a truely remote repository
set up by a third party to provide their artifacts for downloading (for example,
Ibiblio houses Maven's central repository).
Other "remote" repositories may be internal repositories
set up on a file or HTTP server within your company, used to share private artifacts between development teams
and for releases.
The local and remote repositories are structured the same way so that scripts can easily be run on either side, or they can be synced for offline used. In general use, the layout of the repositories is completely transparent to the Maven user, however.
It is not recommended that you store your JARs in CVS. Maven tries to promote the notion of a user local repository where JARs, or any project artifacts, can be stored and used for any number of builds. Many projects have dependencies such as XML parsers and standard utilities that are often replicated in typical builds. With Maven these standard utilities can be stored in your local repository and shared by any number of builds.
This has the following advantages:
In general, you should not need to do anything with the local repository on a regular basis, except clean it out if you are short on disk space (or erase it completely if you are willing to download everything again).
For the remote repositories, they are used for both downloading and uploading (if you have the permission to do so).
Downloading in Maven is triggered by a project declaring a dependency that is not present in the local
repository (or for a SNAPSHOT
, when the remote repository contains one that is newer).
By default, Maven will download from Ibiblio.
To override this, you need to set the property maven.repo.remote
as follows:
maven.repo.remote=http://public.planetmirror.com/pub/maven/,http://www.ibiblio.org/maven/
You can set this in your ~/build.properties
file to globally use a certain mirror, however
note that it is common for a project to customise the repository in their project.properties
and that your setting will take precedence. If you find that dependencies are not being found, check you
have not overridden the remote repository.
(Future versions should allow you to use a setting of
${maven.repo.remote},http://planetmirror.com/maven
, but currently this causes an infinite
recursion).
For more information on dependencies, see Handling Dependencies.
If you find you need to build your projects offline you can either use the offline switch on the CLI:
maven -o jar:jar
This is equivalent to:
maven -Dmaven.mode.online=false jar:jar
Or you can set
maven.mode.online
to
false
in your build.properties
file to ensure you always work offline.
Note that many plugins will honour the offline setting and not perform any operations that would connect to the internet. Some examples are resolving Javadoc links and link checking the site.
If you would like normal operations to succeed, but for no dependency downloading to occur, set the
maven.repo.remote.enabled
property to false
.
While this is possible for any type of remote repository, you must have the permission to do so. To have someone upload to the central Maven repository, see Uploading to Ibiblio.
Usually, you will only be attempting to upload a release of your own application to an internal repository. See internal repositories for more information.