-
I am a bit puzzled. I have a project that is building fine on macOS Azul JDK 21 on my machine. However it fails to build with GitHub Actions CI and Temurin 21. The error message is confusing. There are only JUnit 5 tests. The project is using a target platform and Maven wrapper to ensure same Maven+Tycho+TP is used. There should be no diff yet the behavior is different. Any idea what/where to debug?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Have you tried locally with an empty maven repo e.g. |
Beta Was this translation helpful? Give feedback.
-
It looks like this is caused by conflicting imports in the test bundle With this commit it's seems to work now. |
Beta Was this translation helpful? Give feedback.
It looks like this is caused by conflicting imports in the test bundle
MANIFEST.MF
file. It had an import package declaration fororg.junit
(old JUnit4), which must have triggered this behavior after the TP update.With this commit it's seems to work now.
salesforce/bazel-eclipse@56a7ad4