So the versions are added by the Jakarta BOM. Is i...
# community-support
c
So the versions are added by the Jakarta BOM. Is it possible to add the jakarta bom if needed but only before the spring boot one? allowing the spring boot one to override
Copy code
|                   +--- jakarta.enterprise:jakarta.enterprise.cdi-api FAILED
|    |                   +--- jakarta.inject:jakarta.inject-api -> 2.0.1
|    |                   +--- jakarta.interceptor:jakarta.interceptor-api FAILED
|    |                   \--- jakarta.enterprise:jakarta.enterprise.lang-model FAILED
v
I have no idea. Maybe again use a component metadata rule to make the spring boot bom depend on the jakarta bom? That is what you said should have happened anyway in your opinion, didn't you?
c
well, to add it as a dependency would still be to load it after I think. problem is spring boot does provide some of its own versions for the same dependencies . I was told like 3.0.1 instead of 3.0.0 in one case or something silly like that
so the problem is needing to make sure it's prepended so the jakarta bom happens before any overrides
I suppose a bundle would at least be an improvement... that still makes it a 1 liner
that's assuming you can pass a bundle to platform...
v
You cannot I think. You would need to iterate over the bundle and do platform for each member iirc