Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Services/Nexus"

(Eclipse Nexus Instance)
(Replaced content with "== This page has been moved to https://github.com/eclipse-cbi/cbi/wiki/Nexus ==")
 
(45 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Eclipse Nexus Instance ==
+
== This page has been moved to https://github.com/eclipse-cbi/cbi/wiki/Nexus ==
 
+
The Eclipse Nexus instance is hosted at: https://repo.eclipse.org
+
 
+
This repository allows Eclipse projects to publish their build artifacts into a centralized repository hosted by EMO.
+
 
+
 
+
== Deploying artifacts to repo.eclipse.org ==
+
 
+
To deploy artifacts to repo.eclipse.org using Maven you will need to add a "distributionManagement" section to your project pom. An example below:
+
 
+
<pre>
+
  <distributionManagement>
+
    <repository>
+
      <id>repo.eclipse.org</id>
+
      <name>Project Repository - Releases</name>
+
      <url>https://repo.eclipse.org/content/repositories/project-releases/</url>
+
    </repository>
+
    <snapshotRepository>
+
      <id>repo.eclipse.org</id>
+
      <name>Project Repository - Snapshots</name>
+
      <url>https://repo.eclipse.org/content/repositories/project-snapshots/</url>
+
    </snapshotRepository>
+
  </distributionManagement>
+
</pre>
+
 
+
Replace instances of the word "project" with your project's name.
+

Latest revision as of 14:55, 7 November 2023

This page has been moved to https://github.com/eclipse-cbi/cbi/wiki/Nexus

Back to the top