I have a large SBT based multi-project build I want to leave this way. Now, I want to add a GUI application that is based on Eclipse RCP / Workbench. Currently, my workflow is:
Build the SBT project
Publish the artifacts to the local Maven repository
Use p2-maven-plugin and Maven to create an update site
Install the bundles generated in 3. into my workbench target platform
Create my Eclipse application
The first two steps are okay for me, they can be automated in Jenkins. Now I am having a bit of a headache about "Jenkins-izing" the other three steps. I haven't yet found a good solution for this. There is the good old PDE build which is ant-based and very cumbersome for larger projects, then there is Maven Tycho which also looks quite painful because it shoehorns Eclipse's P2 system on top of Maven, and it's Dependency Hell galore.
Eclipse now has Buildship but I haven't yet looked at it in detail, so I don't know if it can build RCP applications.
I just found Wuff and in the Wiki there is a site on converting existing Eclipse plugins which looks quite straightforward.
So my questions are:
Can Wuff build RCP-based applications from product configurations?
Does it support P2 AND Maven dependencies in friendly coexistence? (as my application also uses stuff from Scala-IDE and needs to fetch dependencies from there)
If yes, can I omit step 3 and just use the artifacts my SBT build published?
I have a large SBT based multi-project build I want to leave this way. Now, I want to add a GUI application that is based on Eclipse RCP / Workbench. Currently, my workflow is:
The first two steps are okay for me, they can be automated in Jenkins. Now I am having a bit of a headache about "Jenkins-izing" the other three steps. I haven't yet found a good solution for this. There is the good old PDE build which is ant-based and very cumbersome for larger projects, then there is Maven Tycho which also looks quite painful because it shoehorns Eclipse's P2 system on top of Maven, and it's Dependency Hell galore. Eclipse now has Buildship but I haven't yet looked at it in detail, so I don't know if it can build RCP applications.
I just found Wuff and in the Wiki there is a site on converting existing Eclipse plugins which looks quite straightforward.
So my questions are: