I would like to create an Oomph product setup file based off of an existing Eclipse installation. Is there a way to generate a setup file as a sort of snapshot of a current installation?
Asked
Active
Viewed 608 times
1 Answers
3
It turns out - it is not possible, at least not with one click. Here is what I did:
- Create new project.setup
- Check which update sites are configured in eclipse and create repositories under the p2 Task:
code:
<setupTask xsi:type="setup.p2:P2Task">
<repository url="http://download.oracle.com/otn_software/oepe/12.2.1.6/oxygen/repository/"/>
- Use the repository explorer to copy+paste some plugins that are installed and will be needed into the p2 task.
That's it, now you have a new eclipse installation. - Configure projects

user1414745
- 1,317
- 6
- 25
- 45