-
Notifications
You must be signed in to change notification settings - Fork 31
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
Fails to import build with Scala 3 #395
Comments
I cannot reproduce your problem sbt new scala/scala3.g8 i changed my sbt build file witht he zio s3 dependency val scala3Version = "3.2.2"
lazy val root = project
.in(file("."))
.settings(
name := "playground-scala3",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
libraryDependencies += "dev.zio" %% "zio-s3" % "0.4.2.3"
) sbt compile We are not using this dependency for scala3 https://github.com/zio/zio-s3/blob/series/2.x/build.sbt#L48 |
Please reopen if you have some problem |
Hmm it must be that one of my other dependencies is pulling |
I just got this problem. |
Also the scala dotty version is static not dynamic. It is set here zio-s3/project/BuildHelper.scala Line 13 in fa3d201
i dont understand the issue you are facing i was not able to reproduce, can you provide a script scastie to reproduce the issue |
I was checking the dependencies of the project , i dont see anything regarding the
|
You can also display the graph of the dependency with dependency tree command |
You can try https://scastie.scala-lang.org/TY0yKIaDTAygq4GxKtPrIA |
release 0.4.3 |
When I compile with
And dependency
I'm getting an error
I am not referencing that package in any other dependency that I'm aware of, and if I remove the zio-s3 dependency my code compiles and runs just fine.
I'm new to Scala and ZIO, but from what I can see, the problem line appears to be this one https://github.com/zio/zio-s3/blob/main/build.sbt#L46 and this one
zio-s3/project/BuildHelper.scala
Line 13 in d90f823
The text was updated successfully, but these errors were encountered: