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"

(Updated to Aether 0.9.0.M2)
m
 
(One intermediate revision by one other user not shown)
Line 18: Line 18:
 
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>DefaultRepositorySystemSession</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>DefaultRepositorySystemSession</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. The method <tt>[http://git.eclipse.org/c/aether/aether-ant.git/tree/src/main/java/org/eclipse/aether/ant/AntRepoSys.java#n306 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.
+
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/internal/ant/AntRepoSys.java#n350 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.
 +
 
 +
[[Category:Aether]]

Latest revision as of 01:42, 10 July 2014

Aether and its components are designed to be stateless and as such all configuration/state has to 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.eclipse.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.MavenRepositorySystemUtils;
 
...
    private static RepositorySystemSession newSession( RepositorySystem system )
    {
        DefaultRepositorySystemSession session = MavenRepositorySystemUtils.newSession();
 
        LocalRepository localRepo = new LocalRepository( "target/local-repo" );
        session.setLocalRepositoryManager( system.newLocalRepositoryManager( session, 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 DefaultRepositorySystemSession 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.