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

Tycho/Nexus Unzip Plugin

Nexus Unzip Repository

What is it ?

The Unzip Repository is a plugin for the Nexus OSS maven repository manager.
It enables binary p2 artifact exchange between tycho projects via Nexus.

How does it work ?

  1. The first tycho project ("producer") deploys a (zipped) p2 repository to nexus. It does this by simply using mvn deploy on a maven project with packaging type eclipse-repository
  2. The second tycho project ("consumer") uses the p2 repository deployed by "producer". This is done using a special "unzip" URL providing an "unzipped view" on the zipped p2 repository

Implementation Details

The Unzip Repository is a new Nexus repository type that shadows the build results of a standard Maven 2 repository and allows to browse into zip and jar artifacts.

Example:

  • p2 repo zip as artifact in Maven 2 Repository:
http://<NEXUS_HOST>/nexus/content/repositories/public/org/example/org.example.repository/0.1.0/org.example.repository-0.1.0-assembly.zip
  • Same artifact viewed as unzipped p2 repository using a virtual unzip repo named public.unzip:
http://<NEXUS_HOST>/nexus/content/repositories/public.unzip/org/example/org.example.repository/0.1.0/org.example.repository-0.1.0-assembly.zip-unzip
Warning2.png
"Unzip" URLs of redeployable artifacts (e.g. snapshots) cannot be used while the artifact is redeployed!
The current implementation does not guarantee that you find valid content under the "unzip" URL of such artifacts while they are redeployed. Take care to not access those URLs during redeployment.


Installation and Configuration

Prerequisites

Nexus Unzip Repository Plugin 0.14.0 requires Nexus OSS version 2.8.x or later.

Download

Get the nexus unzip-repository-plugin version 0.14.0 from maven central.

Deploying the plug-in

To enable a Nexus server to provide direct access to files inside zip/jar archives, you need to deploy the Nexus Unzip Repository Plugin to the Nexus server instance and configure a new virtual repository using the Unzip Repository type.

  1. Stop the Nexus instance
  2. Unzip the unzip-repository-plugin-<VERSION>-bundle.zip into ${NEXUS_WORK}/plugin-repository/ folder
  3. Restart the Nexus server
  4. To verify that the Unzip Repository Plugin is activated, open the Plugin Console from the Administration sub-menu of the Nexus UI

Configuring an unzip repository (using hosted/proxy/virtual repo as master)

WARNING: Using the Nexus Web UI you can only assign hosted, proxy and virtual repositories as the master repository. To configure a group as the used master , you need to configure it directly in the configuration file on the Nexus host machine. Details in the section below.

  1. Open the Nexus Web UI
  2. Login with your administrative user
  3. Choose the Repositories View from the side menu
  4. Open the Add menu and choose Virtual Repository. The detail view below the repository list opens a form to specify further repository configuration.
  5. Enter a unique repository ID and choose a (display) name
  6. Choose Unzip Repository Template as the repository provider
  7. Select the intended repository from the list of the source nexus repositories (see below if you want to configure a group as source repository)
  8. Save the repository config
  9. To verify the setup of the unzip repository, you can now select the repository from the repository list and start browsing the folders and into archives that you have deployed into the previously selected master repository. You can also open the URL given in the Repository Path column to browse in the standard web browser.

Configuring a group as master for the unzip repository

All groups and repositories configuration are stored in the nexus.xml config file in the Nexus work folder. Due to a limitation of the configuration web UI, you currently have to edit this file directly in a text editor in order to configure a group repository as master.

  1. Stop Nexus
  2. Open ${NEXUS_WORK}/conf/nexus.xml
  3. Add a new repository element with following structure
<repository>
  <id>master.group.unzip</id>
  <name>Group Unzip</name>
  <providerRole>org.eclipse.tycho.nexus.internal.plugin.UnzipRepository</providerRole>
  <providerHint>org.eclipse.tycho.nexus.plugin.DefaultUnzipRepository</providerHint>
  <localStatus>IN_SERVICE</localStatus>
  <notFoundCacheActive>true</notFoundCacheActive>
  <notFoundCacheTTL>15</notFoundCacheTTL>
  <userManaged>true</userManaged>
  <exposed>true</exposed>
  <browseable>true</browseable>
  <writePolicy>READ_ONLY</writePolicy>
  <searchable>true</searchable>
  <localStorage>
    <provider>file</provider>
  </localStorage>
  <externalConfiguration>
    <masterRepositoryId>public</masterRepositoryId>
    <useVirtualVersion>true</useVirtualVersion>
    <synchronizeAtStartup>false</synchronizeAtStartup>
  </externalConfiguration>
</repository>

Note that you specify the repository id (not the name) of the group in the masterRepositoryId element.
4. Restart Nexus

Enabling virtual versions SNAPSHOT and RELEASE

Especially for SNAPSHOT versions, it's generally useful to be able to reference the latest SNAPSHOT version of a p2 repository without having to specify the actual timestamp of the latest SNAPSHOT

http://<NEXUS_HOST>/nexus/content/repositories/public.unzip/org/example/org.example.repository/0.1.0-SNAPSHOT/org.example.repository-0.1.0-SNAPSHOT-assembly.zip-unzip

Again due to a limitation of the configuration web UI, you currently have to manually edit ${NEXUS_WORK}/conf/nexus.xml. To enable virtual SNAPSHOT version expansion, configure useVirtualVersion=true in ${NEXUS_WORK}/conf/nexus.xml and restart nexus. For example:

<repository>
  <id>master.group.unzip</id>
  <name>Group Unzip</name>
  <providerRole>org.eclipse.tycho.nexus.internal.plugin.UnzipRepository</providerRole>
  <providerHint>org.eclipse.tycho.nexus.plugin.DefaultUnzipRepository</providerHint>
  <localStatus>IN_SERVICE</localStatus>
  <notFoundCacheActive>true</notFoundCacheActive>
  <notFoundCacheTTL>15</notFoundCacheTTL>
  <userManaged>true</userManaged>
  <exposed>true</exposed>
  <browseable>true</browseable>
  <writePolicy>READ_ONLY</writePolicy>
  <searchable>true</searchable>
  <localStorage>
    <provider>file</provider>
  </localStorage>
  <externalConfiguration>
    <masterRepositoryId>public</masterRepositoryId>
    <useVirtualVersion>true</useVirtualVersion>
    <synchronizeAtStartup>false</synchronizeAtStartup>
  </externalConfiguration>
</repository>

WARNING: the Anonymous user should have read permission over the virtualized repository otherwise when a request to an unzip URL with -SNAPSHOT is made you will get a HTTP 500 and you will see in Nexus logs an error caused by:

 org.sonatype.nexus.proxy.AccessDeniedException: Access denied on repository ID='my-hosted-snapshots', path='/path-to-the-artifact/1.0.0-SNAPSHOT/maven-metadata.xml', action='read'!

This is because when the unzipped version of a -SNAPSHOT is requested, the plugin looks for the latest timestamp making. To do this it makes an unauthenticated request to get the metadata of the this GAV on the related hosted repository. See the code

Contributing

The project source code is hosted at eclipse with the Tycho project. You can also fork it on github. See Tycho/Contributor Guide for details on how to contribute.

Back to the top