Replies: 2 comments 3 replies
-
Not really answering your question but is there a reason why you can't upgrade your project from 2.4.4 to 2.5.4? They upgrade should work without issues (probably) |
Beta Was this translation helpful? Give feedback.
-
In general there is no guarantees that a module compiled against Micronaut 2.5 will work with 2.4. There may have been a feature introduced in 2.5 that is being used and thus is incompatible with 2.4. Library authors should make it clear what version of Micronaut is supported and if they desire to support older versions of Micronaut they should only depend on those older versions or create multiple release lines of their modules. |
Beta Was this translation helpful? Give feedback.
-
I have a project with an older Micronaut version (
2.4.4
). I am using Gradle for dependency management and want to usemicronaut-camunda-bpm
in my project. This project uses the micronaut library plugin and already uses Micronaut2.5.4
. When I add this dependency to my project, Gradle updates all my current2.4.4
dependencies to2.5.4
.Is there an easy solution to downgrade the dependencies of micronaut-camunda-bpm to
2.4.4
so that it matches my project?I already tried to set strict versions on the dependencies of my project, but I ended with some dependencies on
2.4.4
and the rest on2.5.4
.Beta Was this translation helpful? Give feedback.
All reactions