Repeated Setting of Scalac Flags in Scala 3
I’m having this build.sbt for one of my projects and this project uses an sbt plugin that I have internally built and published locally. This sbt plugin contains the common shared settings and looks like this:
Repeated Setting of Scalac Flags in Scala 3
I’m having this build.sbt for one of my projects and this project uses an sbt plugin that I have internally built and published locally. This sbt plugin contains the common shared settings and looks like this:
Ignoring Certain Scala 2.13 Compiler Options For Build To Succeed
I have a Scala sbt project where I’m using the sbt-tpolecat plugin:
Ignoring Certain Scala 2.13 Compiler Options For Build To Succeed
I have a Scala sbt project where I’m using the sbt-tpolecat plugin:
Ignoring Certain Scala 2.13 Compiler Options For Build To Succeed
I have a Scala sbt project where I’m using the sbt-tpolecat plugin:
Scala SBT Version Dependency Binary Compatibility Error scala-xml
I have a project that I host on GitHub and I use scala-steward to keep my plugins and dependencies up to date. This worked for a while and now it is turning out to be a nightmare to use such auto updates. Here is the thing. In my plugins.sbt, I have a dependency to scoverage which was updated by scala-steward to version 2.0.6. But the pull request failed to pass through the compile stage and I see the following error:
Test/compile not finding lib/jar with Scala 3 (but 2.13 works)
I’m packaging jars from generated source code with an sbt-plugin and the jars are fine and on the classpath.
Continuously compile multiple configurations in sbt
I can execute multiple tasks with IT/compile; Test/compile
in sbt shell but how to run it continuously?