-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scala 3 support #77
scala 3 support #77
Conversation
pjfanning
commented
Sep 1, 2023
•
edited
Loading
edited
- Slick does not yet support scala3 (in a full release) so the pekko-projection-slick module is not yet supporting scala 3
- pekko-projection-kafka tests need slick - I can split up the project so that the runtime code is separate from the tests - the runtime project will be able to support Scala 3 as a result but the tests will not run on Scala 3 - I will do this in a follow up PR
@@ -153,9 +153,6 @@ lazy val `durable-state` = | |||
name := "pekko-projection-durable-state") | |||
.dependsOn(core) | |||
.dependsOn(testkit % Test) | |||
.settings( | |||
// no previous artifact so must disable MiMa until this is released at least once. | |||
mimaPreviousArtifacts := Set.empty) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will need to add this back after 1.0.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This disables the mima check - we actually want mima checks on all modules. After 1.0.0 is released, I will set this up properly but this setting will not be added back - so that the mima check will work. I will set a project level setting for mimaPreviousArtifacts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm