raboof commented on PR #809: URL: https://github.com/apache/pekko-connectors/pull/809#issuecomment-2354969227
> In my work project I have this > > ```kotlin > val pekkoVersion = "1.1.0" > val pekkoConnectorsVersion = "1.1.0-M1+65-53ed673e-SNAPSHOT" > ``` > > where pekkoVersion is pointing to the pekko-core/pekko-streams version > > if we keep pekkoVersion constant to 1.1.0 then the pekkoConnectorsVersion starts breaking at `1.1.0-M1+64-600516f4-SNAPSHOT` and the reason why is this commit #801. It seems like there is some code within pekko core that checks the major/minor/patch and because `currentVersion = 1.1.1` is greater than `pekkoVersion = 1.1.0` its causing `ClassNotFound` errors for some reason It's difficult to say without a reproducer or exact error message, but you might be referring to https://pekko.apache.org/docs/pekko/current/common/binary-compatibility-rules.html#mixed-versioning-is-not-allowed . Are you seeing that message? If so the solution is to pull up the Pekko version in your project for all your (possibly-transitive) dependencies, as described there. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org