You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have problem with a command migrateTypes module2 when module2 depends on module1 although migrateTypes module1 and migrateDependencies module2 are good:
[error] Modules were resolved with conflicting cross-version suffixes in ProjectRef(uri("file:/home/sirius/new-2/backend/"), "module2"):
[error] org.typelevel:cats-effect-std _3, _2.13
[error] eu.timepit:refined-pureconfig _3, _2.13
[error] org.typelevel:otel4s-core-metrics _3, _2.13
My sbt is
lazyvalmodule1= project
.in(file("common/module1"))
.settings(commonSettings)
.settings(
name :="module1",
)
lazyvalmodule2= project
.in(file("common/module2"))
.dependsOn(module1)
.settings(commonSettings)
.settings(
name :="module2"
)
The text was updated successfully, but these errors were encountered:
and project module2 +compile don't have compiler errors! (exists target folders scala-2.13.16 and scala-3.3.4 for both module1 и module2), but migrateTypes module2 have the same error. I think, sbt try to use module1 on scala 2.13.6 when i run migrateTypes module2, although it need scala-3.3.4
P.S. .settings(commonSettings) are same for this modules, sbt is 1.10.7 .
Uh oh!
There was an error while loading. Please reload this page.
Hello, I have problem with a command
migrateTypes module2
whenmodule2
depends onmodule1
althoughmigrateTypes module1
andmigrateDependencies module2
are good:My
sbt
isThe text was updated successfully, but these errors were encountered: