-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for mirroring the projects target platform
This adds support for converting the projects computed target platform into a deployable p2 repository. This can be used to create a mirror of a target-file, or to have a repository that can be used to install one specific bundle or feature with all its dependencies.
- Loading branch information
Showing
5 changed files
with
162 additions
and
3 deletions.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
...atform-configuration/src/main/java/org/eclipse/tycho/target/MirrorTargetPlatformMojo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023 Christoph Läubrich and others. | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Christoph Läubrich - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.tycho.target; | ||
|
||
import java.io.File; | ||
|
||
import org.apache.maven.plugin.AbstractMojo; | ||
import org.apache.maven.plugin.MojoExecutionException; | ||
import org.apache.maven.plugin.MojoFailureException; | ||
import org.apache.maven.plugins.annotations.Component; | ||
import org.apache.maven.plugins.annotations.LifecyclePhase; | ||
import org.apache.maven.plugins.annotations.Mojo; | ||
import org.apache.maven.plugins.annotations.Parameter; | ||
import org.apache.maven.plugins.annotations.ResolutionScope; | ||
import org.apache.maven.project.MavenProject; | ||
import org.eclipse.equinox.p2.repository.artifact.IArtifactRepository; | ||
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepository; | ||
import org.eclipse.tycho.ReactorProject; | ||
import org.eclipse.tycho.TargetPlatform; | ||
import org.eclipse.tycho.TargetPlatformService; | ||
import org.eclipse.tycho.core.osgitools.DefaultReactorProject; | ||
import org.eclipse.tycho.p2.tools.FacadeException; | ||
import org.eclipse.tycho.p2.tools.mirroring.facade.MirrorApplicationService; | ||
|
||
/** | ||
* Supports mirroring the computed target platform of the current project, this behaves similar to | ||
* what PDE offers with its export deployable feature / plug-in and assembles an update site that | ||
* contains everything this particular project depends on. | ||
*/ | ||
@Mojo(name = "mirror-target-platform", threadSafe = true, requiresDependencyResolution = ResolutionScope.COMPILE, defaultPhase = LifecyclePhase.PREPARE_PACKAGE) | ||
public class MirrorTargetPlatformMojo extends AbstractMojo { | ||
|
||
@Parameter(property = "project", readonly = true) | ||
private MavenProject project; | ||
|
||
@Parameter(defaultValue = "${project.build.directory}/target-platform-repository") | ||
private File destination; | ||
|
||
@Parameter(defaultValue = "${project.id}") | ||
private String name; | ||
|
||
@Component | ||
private TargetPlatformService platformService; | ||
|
||
@Component | ||
private MirrorApplicationService mirrorService; | ||
|
||
@Override | ||
public void execute() throws MojoExecutionException, MojoFailureException { | ||
ReactorProject reactorProject = DefaultReactorProject.adapt(project); | ||
TargetPlatform targetPlatform = platformService.getTargetPlatform(reactorProject).orElse(null); | ||
if (targetPlatform == null) { | ||
getLog().info("Project has no target platform, skip execution."); | ||
return; | ||
} | ||
IArtifactRepository sourceArtifactRepository = targetPlatform.getArtifactRepository(); | ||
IMetadataRepository sourceMetadataRepository = targetPlatform.getMetadataRepository(); | ||
getLog().info("Mirroring target platform, this can take a while ..."); | ||
try { | ||
mirrorService.mirrorDirect(sourceArtifactRepository, sourceMetadataRepository, destination, name); | ||
} catch (FacadeException e) { | ||
throw new MojoFailureException(e.getMessage(), e.getCause()); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters