Hi, I'm currently migrating my Maven Artifact Resolver 1.x code to 2.0. As of
version 2.0 the recommend way to create a RepositorySystemSession is through a
SessionBuilder. In my case, I need to set an own LocalRepositoryManager, which
wraps two EnhancedLocalRepositoryManager instanced. The problem here is, that
in order to create an instance of it I have to call
RepositorySystem#newLocalRepositoryManager which needs a
RepositorySystemSession, which I obviously cannot pass before creating it. To
demonstrate this problem, here's a piece of code. ```java
RepositorySystemSession session = repositorySystem.createSessionBuilder()
.setLocalRepositoryManager(repositorySystem.newLocalRepositoryManager(SESSION,
new LocalRepository(...)) // where should I get SESSION from? ``` Best regards,