blob: b5f92646f1803657d5a57c1203b61418ddb3c3c2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Rapicorp, 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:
* Rapicorp, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.tycho.core.osgitools;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.component.annotations.Component;
import org.eclipse.tycho.ArtifactKey;
import org.eclipse.tycho.DefaultArtifactKey;
import org.eclipse.tycho.ReactorProject;
import org.eclipse.tycho.core.ArtifactDependencyVisitor;
import org.eclipse.tycho.core.ArtifactDependencyWalker;
import org.eclipse.tycho.core.TychoProject;
import org.eclipse.tycho.core.shared.TargetEnvironment;
import org.eclipse.tycho.model.IU;
@Component(role = TychoProject.class, hint = org.eclipse.tycho.ArtifactType.TYPE_INSTALLABLE_UNIT)
public class P2IUProject extends AbstractArtifactBasedProject {
@Override
protected ArtifactDependencyWalker newDependencyWalker(MavenProject project, TargetEnvironment environment) {
return new AbstractArtifactDependencyWalker(getDependencyArtifacts(project, environment), getEnvironments(
project, environment)) {
@Override
public void walk(ArtifactDependencyVisitor visitor) {
//Nothing to do
}
};
}
@Override
public ArtifactKey getArtifactKey(ReactorProject project) {
IU anIU = IU.loadIU(project.getBasedir());
return new DefaultArtifactKey(org.eclipse.tycho.ArtifactType.TYPE_INSTALLABLE_UNIT, anIU.getId(),
anIU.getVersion());
}
@Override
public void setupProject(MavenSession session, MavenProject project) {
//Load the XML here to fail as early as possible like it is done in EclipseFeatureProject
IU.loadIU(project.getBasedir());
}
}