001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *   http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied.  See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019package org.apache.maven.resolver.examples.sisu;
020
021import javax.inject.Inject;
022import javax.inject.Named;
023import javax.inject.Provider;
024
025import com.google.inject.Guice;
026import com.google.inject.Module;
027import org.apache.maven.model.building.DefaultModelBuilderFactory;
028import org.apache.maven.model.building.ModelBuilder;
029import org.eclipse.aether.RepositorySystem;
030import org.eclipse.sisu.launch.Main;
031import org.eclipse.sisu.space.BeanScanning;
032
033/**
034 * A factory for repository system instances that employs Eclipse Sisu to wire up the system's components.
035 */
036@Named
037public class SisuRepositorySystemFactory {
038    @Inject
039    private RepositorySystem repositorySystem;
040
041    public static RepositorySystem newRepositorySystem() {
042        final Module app = Main.wire(BeanScanning.INDEX, new SisuRepositorySystemDemoModule());
043        return Guice.createInjector(app).getInstance(SisuRepositorySystemFactory.class).repositorySystem;
044    }
045
046    @Named
047    private static class ModelBuilderProvider implements Provider<ModelBuilder> {
048        public ModelBuilder get() {
049            return new DefaultModelBuilderFactory().newInstance();
050        }
051    }
052}