Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Aether/Creating a Repository System Session"

(Added page about booting repo session)
 
(Linked to Aether Ant Task code for settings integration)
Line 21: Line 21:
 
As you see, the only setting that must be specified is the local repository, other settings are initialized with default values. Please have a look at the API docs for <tt>MavenRepositorySystemSession</tt> to learn about all the other things you can configure for a session.
 
As you see, the only setting that must be specified is the local repository, other settings are initialized with default values. Please have a look at the API docs for <tt>MavenRepositorySystemSession</tt> to learn about all the other things you can configure for a session.
  
If you seek a closer cooperation with [http://maven.apache.org/ Apache Maven] and want to read configuration from the user's <tt>settings.xml</tt>, you should have a look at the library <tt>org.apache.maven:maven-settings-builder</tt> which provides the necessary bits. But please direct any questions regarding usage of that library to the Maven mailing list.
+
If you seek a closer cooperation with [http://maven.apache.org/ Apache Maven] and want to read configuration from the user's <tt>settings.xml</tt>, you should have a look at the library <tt>org.apache.maven:maven-settings-builder</tt> which provides the necessary bits. The method <tt>[http://git.eclipse.org/c/aether/aether-ant.git/tree/src/main/java/org/eclipse/aether/ant/AntRepoSys.java#n305 AntRepoSys.getSettings()]</tt> from the Aether Ant Tasks can serve as inspiration for your own code. But please direct any questions regarding usage of that library to the Maven mailing list.

Revision as of 07:08, 21 February 2012

Warning2.png
For the time being, this article actually refers to Sonatype Aether, i.e. the predecessor of Eclipse Aether. While the artifact coordinates and class names mentioned below differ slightly from those of Eclipse Aether, the general concept for usage of Aether will remain the same once the Maven Aether Provider has adopted Eclipse Aether.


Aether and its components are designed to be stateless and as such all configuration/state has be passed into the methods. When one makes multiple requests to resolve dependencies, a fair amount of settings usually remains the same across these method calls, like the proxy settings or the path to the local repository. Those settings that tend to be the same for an entire usage session of the repository system are represented by an instance of org.sonatype.aether.RepositorySystemSession. Using classes from maven-aether-provider, creating such a session that mimics Maven's setup can be done like this:

import org.apache.maven.repository.internal.MavenRepositorySystemSession;
 
...
    private static RepositorySystemSession newSession( RepositorySystem system )
    {
        MavenRepositorySystemSession session = new MavenRepositorySystemSession();
 
        LocalRepository localRepo = new LocalRepository( "target/local-repo" );
        session.setLocalRepositoryManager( system.newLocalRepositoryManager( localRepo ) );
 
        return session;
    }

As you see, the only setting that must be specified is the local repository, other settings are initialized with default values. Please have a look at the API docs for MavenRepositorySystemSession to learn about all the other things you can configure for a session.

If you seek a closer cooperation with Apache Maven and want to read configuration from the user's settings.xml, you should have a look at the library org.apache.maven:maven-settings-builder which provides the necessary bits. The method AntRepoSys.getSettings() from the Aether Ant Tasks can serve as inspiration for your own code. But please direct any questions regarding usage of that library to the Maven mailing list.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.