org.eclipse.tycho.osgi.runtime.DefaultTychoP2RuntimeResolver.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.tycho.osgi.runtime.DefaultTychoP2RuntimeResolver.java

Source

/*******************************************************************************
 * Copyright (c) 2008, 2011 Sonatype Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Sonatype Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.tycho.osgi.runtime;

import java.io.File;
import java.util.List;

import org.apache.maven.MavenExecutionException;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.LegacySupport;
import org.codehaus.plexus.component.annotations.Component;
import org.codehaus.plexus.component.annotations.Requirement;
import org.eclipse.sisu.equinox.embedder.EquinoxRuntimeLocator;
import org.eclipse.tycho.p2runtime.TychoP2RuntimeResolver;

@Component(role = TychoP2RuntimeResolver.class)
public class DefaultTychoP2RuntimeResolver implements TychoP2RuntimeResolver {
    @Requirement
    private EquinoxRuntimeLocator location;

    @Requirement
    private LegacySupport sessionContext;

    public List<File> getRuntimeLocations(MavenSession session) throws MavenExecutionException {
        MavenSession oldSession = sessionContext.getSession();

        sessionContext.setSession(session);
        try {
            return location.getRuntimeLocations();
        } catch (MavenExecutionException e) {
            throw e;
        } catch (Exception e) {
            throw new MavenExecutionException("Could not resolve Tycho P2 runtime", e);
        } finally {
            sessionContext.setSession(oldSession);
        }
    }

}