- Developing
- Using P2 with Nexus Repository Manger 3
- Installing the plugin
- The Fine Print
- Getting Help
- Apache Maven 3.3.3+
- Java 8+
- Network access to https://repository.sonatype.org/content/groups/sonatype-public-grid
Also, there is a good amount of information available at Bundle Development
To build the project and generate the bundle use Maven
mvn clean package
If everything checks out, the bundle for P2 should be available in the target
folder
docker build -t nexus-repository-p2:1.0.0 .
docker run -d -p 8081:8081 --name nexus nexus-repository-p2:1.0.0
For further information like how to persist volumes check out the GitHub repo for our official image.
The application will now be available from your browser at http://localhost:8081
We have detailed instructions on how to get started here!
NOTE: This is an early version of P2 Proxy and does not fully support the following as of yet:
- Composite Repositories
- This is implemented but likely will fail if the composite files reference absolute paths rather than relative paths
- Old style (non-P2) update sites. The code that accomplished this can be found here
- These are fairly old, and have not been added at all
If you'd like it to support the aforementioned sites, please file an issue, or better yet, submit a PR :)
There are a range of options for installing the P2 plugin. You'll need to build it first, and then install the plugin with the options shown below:
Installations done via the Karaf console will be wiped out with every restart of Nexus Repository. This is a good installation path if you are just testing or doing development on the plugin.
-
Enable Nexus console: edit
<nexus_dir>/bin/nexus.vmoptions
and changekaraf.startLocalConsole
totrue
.More details here: Bundle Development
-
Run Nexus' console:
# sudo su - nexus $ cd <nexus_dir>/bin $ ./nexus run > bundle:install file:///tmp/nexus-repository-p2-1.0.0.jar > bundle:list
(look for org.sonatype.nexus.plugins:nexus-repository-p2 ID, should be the last one)
> bundle:start <org.sonatype.nexus.plugins:nexus-repository-p2 ID>
For more permanent installs of the nexus-repository-p2 plugin, follow these instructions:
- Copy the bundle (nexus-repository-p2-1.0.0.jar) into <nexus_dir>/deploy
This will cause the plugin to be loaded with each restart of Nexus Repository. As well, this folder is monitored by Nexus Repository and the plugin should load within 60 seconds of being copied there if Nexus Repository is running. You will still need to start the bundle using the karaf commands mentioned in the temporary install.
If you are trying to use the P2 plugin permanently, it likely makes more sense to do the following:
-
Copy the bundle into
<nexus_dir>/system/org/sonatype/nexus/plugins/nexus-repository-p2/1.0.0/nexus-repository-p2-1.0.0.jar
-
Make the following additions marked with + to
<nexus_dir>/system/org/sonatype/nexus/assemblies/nexus-core-feature/3.x.y/nexus-core-feature-3.x.y-features.xml
<feature prerequisite="false" dependency="false">nexus-repository-rubygems</feature> + <feature prerequisite="false" dependency="false">nexus-repository-p2</feature> <feature prerequisite="false" dependency="false">nexus-repository-gitlfs</feature> </feature>
And
+ <feature name="nexus-repository-p2" description="org.sonatype.nexus.plugins:nexus-repository-p2" version="1.0.0"> + <details>org.sonatype.nexus.plugins:nexus-repository-p2</details> + <bundle>mvn:org.sonatype.nexus.plugins/nexus-repository-p2/1.0.0</bundle> + </feature> </features>
This will cause the plugin to be loaded and started with each startup of Nexus Repository.
It is worth noting that this is NOT SUPPORTED by Sonatype, and is a contribution of ours to the open source community (read: you!)
Remember:
- Use this contribution at the risk tolerance that you have
- Do NOT file Sonatype support tickets related to P2 support in regard to this plugin
- DO file issues here on GitHub, so that the community can pitch in
Phew, that was easier than I thought. Last but not least of all:
Have fun creating and using this plugin and the Nexus platform, we are glad to have you here!
Looking to contribute to our code but need some help? There's a few ways to get information:
- Chat with us on Gitter
- Check out the Nexus3 tag on Stack Overflow
- Check out the Nexus Repository User List