Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Equinox p2 Repository Mirroring"

(Getting the Mirroring Tools)
Line 1: Line 1:
 
==Introduction==
 
==Introduction==
  
talk about repos
+
p2 artifact repositories can hold many different forms of the same artifact. For example, a JAR artifact may exist as
the idea of mirroring
+
* a canonical (unmolested) JAR
 +
* a compressed JAR (assuming the original was not compressed)
 +
* a pack200 JAR
 +
* a delta relative to another version of the artifact
 +
* ...
 +
 
 +
p2 metadata repositories are like artifact profiles that describe dependencies needed to function.
  
 
This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.
 
This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.
Line 11: Line 17:
 
==Running the Mirroring Tools==
 
==Running the Mirroring Tools==
  
Run from the command line by running the Admin tool with the args you have below (e.g. eclipse.exe -application org.eclipse.equinox.p2.tools.MirrorApplication -source ...).  
+
Run from the command line by running the Admin tool with the args you have below (e.g. eclipse.exe -application   org.eclipse.equinox.p2.tools.MirrorApplication -source ...).  
  
 
The attached example performs the basic mirroring of an artifact and metadata repository into a target repository. The target repository will be an exact mirror of the source repositories.  This means any information on the target repository prior to mirroring will be lost, and if there is no target repository to begin with then a new repository will be created.
 
The attached example performs the basic mirroring of an artifact and metadata repository into a target repository. The target repository will be an exact mirror of the source repositories.  This means any information on the target repository prior to mirroring will be lost, and if there is no target repository to begin with then a new repository will be created.
  
-console -consolelog -application org.eclipse.equinox.p2.tools.MirrorApplication
+
  -console -consolelog -application org.eclipse.equinox.p2.tools.MirrorApplication
-source Insert Source URL (e.g. http://download.eclipse.org/eclipse/updates/3.4milestones/)
+
  -source Insert Source URL (e.g. http://download.eclipse.org/eclipse/updates/3.4milestones/)
-destination Insert Destination URL (e.g. file:/tmp/3.4milestonesMirror/)
+
  -destination Insert Destination URL (e.g. file:/tmp/3.4milestonesMirror/)
-ius all
+
  -ius all
-artifacts all
+
  -artifacts all
-overwrite
+
  -overwrite
  
For more selective mirroring (or copying) of exclusively metadata or artifacts see example <Link>
+
For more selective mirroring (or copying) of exclusively metadata or artifacts see example [http://wiki.eclipse.org/Equinox_p2_Repository_Selective_Mirroring Selective Mirroring].

Revision as of 15:42, 5 June 2008

Introduction

p2 artifact repositories can hold many different forms of the same artifact. For example, a JAR artifact may exist as

  • a canonical (unmolested) JAR
  • a compressed JAR (assuming the original was not compressed)
  • a pack200 JAR
  • a delta relative to another version of the artifact
  • ...

p2 metadata repositories are like artifact profiles that describe dependencies needed to function.

This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.

Getting the Mirroring Tools

Get the p2 agent from the provisioning section of: Equinox Stable Build: 3.4RC3.

Running the Mirroring Tools

Run from the command line by running the Admin tool with the args you have below (e.g. eclipse.exe -application org.eclipse.equinox.p2.tools.MirrorApplication -source ...).

The attached example performs the basic mirroring of an artifact and metadata repository into a target repository. The target repository will be an exact mirror of the source repositories. This means any information on the target repository prior to mirroring will be lost, and if there is no target repository to begin with then a new repository will be created.

 -console -consolelog -application org.eclipse.equinox.p2.tools.MirrorApplication
 -source Insert Source URL (e.g. http://download.eclipse.org/eclipse/updates/3.4milestones/)
 -destination Insert Destination URL (e.g. file:/tmp/3.4milestonesMirror/)
 -ius all
 -artifacts all
 -overwrite

For more selective mirroring (or copying) of exclusively metadata or artifacts see example Selective Mirroring.

Back to the top