Migrating to Nexus for Project Dependencies #3371
Unanswered
cristianvalentincojocaru
asked this question in
Q&A
Replies: 1 comment 4 replies
-
The very first thing is you should really upgrade to the latest release (that is Tycho 4.0.4) Beside that its a bit unclear what exact problem your are facing and why you have chosen the given structures, so you need at least to share an example of a project to get better answer. If you require dedicated support you can find Tycho support options here: |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
TL;DR
Is it possible to resolve Eclipse plugins and features dependencies using a Maven repository stored on Nexus? If yes, what is the recommended approach and the necessary steps to make this integration work effectively?
Hello everyone,
We're in the process of migrating to a Nexus storage solution for our project, and we've encountered challenges resolving project dependencies, especially for repositories with dependencies from Nexus.
Previously, we specified individual dependencies (maven repositories, p2 repositories, etc.) in the pom.xml for each repository, as seen in Example 1. This is no longer viable thus we are trying to streamline this process and achieve something similar to Eclipse's approach (Example in Eclipse JDT - https://github.com/eclipse-jdt/eclipse.jdt/blob/master/pom.xml#L48 ).
Example 1:
We managed to make it work with the following setup, but it involves a considerable amount of manual work to replace dependencies from all repositories:
Our goal:
We would gladly appreciate any help and insights on how Eclipse manages to have such a streamlined process and solve all the dependencies using a single repository.
Additional details:
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions