mdedetrich commented on PR #809: URL: https://github.com/apache/pekko-connectors/pull/809#issuecomment-2354943489
> > then it would fail with class not found errors. > > This is because Pekko is doing a check on the major/minor version > > I'm confused: is it failing with class not found errors or failing the major/minor version check? Can you share a non-working project? > > > if you set `currentVersion` to some version, that is actually setting the minimum bound > > I thought it was intended that `main` would be targeting `1.1.x`, so setting that as the minimum bound seems valid? 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 https://github.com/apache/pekko-connectors/pull/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 -- 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