Hi, I’m attempting to upgrade a jlink application to scala3. I keep running into this error saying I’m missing a transitive dependency called scala.quoted
which depends on scala
. Here is the error
[error] Dependee packages not found in classpath. You can use jlinkIgnoreMissingDependency to silence these.
[error] scala.quoted -> scala
[error] scala.quoted.runtime -> scala
Here is the output of dependencyTree
inside of sbt
Here is the link to the github repo with the github action run attempting to create the jlink build: 2024 05 11 scala3 crossbuild · bitcoin-s/bitcoin-s@e475fca · GitHub
If you want to re-produce yourself, you can
- Checkout this branch GitHub - Christewart/bitcoin-s-core at 2024-05-11-scala3-crossbuild
- Run
sbt appServer/universal:stage
What do i need to do to get the jlink
build to work?