-
This is a kind of a follow-up to #925 attempting to build the update site as a Maven update site. I am trying to adapt the approach taken by the Jetty team and have added this
However, there are two problems with that:
So I tried adjusting to adding the features as dependencies and including dependencies in the build:
But that yields an empty update site again:
Also, the I can see an odd error message printed to stderr, but it doesn't tell me which file is the problem:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 25 replies
-
I think features are not supported right now neverless.
That is intentional as the goal for jetty is to include everything currently build without any further configuration, if you only build the site, then there is nothing to include (how should the mojo know?)
That is the correct approach, but will only work for bundles right now, so instead of a feature you need to add a dependency to all the bundles that feature includes. By the way, this feature was specifically crafted to be used in "non tycho" cases, it does not work well if you try to mix things here, see |
Beta Was this translation helpful? Give feedback.
-
Can you please try out the current tycho snapshot build for version |
Beta Was this translation helpful? Give feedback.
I think features are not supported right now neverless.
That is intentional as the goal for jetty is to include everything currently build without any further configuration, if you only build the site, then there is nothing to include (how should the mojo know?)
That is the correct approach, but will only work for bundles right now, so instead of a feature you need to add a dependency t…