-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build fails on a tycho-based eclipse project #477
Comments
If A. Sequential build with B. Make the dependencies explicit using a pom test scope pom, excluding all transitives. There is an example in Camel Quarkus: https://github.com/apache/camel-quarkus/blob/main/catalog/pom.xml#L67-L80 |
The build also fails when running sequentially with |
One solution should be to use the new |
The following patch seems to work around the problem: #478 |
Yeah, the workaround is useful. In any case, wouldn't it be worth reporting on Tycho to have a proper fix there? |
@ppalaga I did it yesterday eclipse-tycho/tycho#266 |
Initial
mvnd clean verify -DskipTests
build passed, then subsequent builds (no code/pom changes) failed:A working build of org.eclipse.jdt.ls.product looks like:
It feels like the concurrent build might be trying to build org.eclipse.jdt.ls.product before its dependencies are done, as it should be built last in a sequential build.
The text was updated successfully, but these errors were encountered: