-
I found that mill generates mill-debug-log.txt file at my home directory. From the documentation, if I understand correctly, only Here are my environments: My OS: Arch Linux I'm using the mill bootstrap script by following command curl -L https://github.com/com-lihaoyi/mill/releases/download/0.12.2/0.12.2 > mill && chmod +x mill and here is my import mill._, scalalib._
trait CommonModule extends ScalaModule {
def scalaVersion = "3.6.1"
def scalacOptions = Seq(
"-Werror",
"-feature",
"-Wsafe-init",
"-Wunused:all",
"-deprecation",
"-experimental",
"-Yexplicit-nulls",
"-language:strictEquality",
)
}
object bifer extends CommonModule {
val sqalaVersion = "0.0.47"
def ivyDeps = Agg(
ivy"com.wz7982::sqala-dsl:$sqalaVersion",
ivy"com.wz7982::sqala-jdbc:$sqalaVersion",
ivy"com.wz7982::sqala-dynamic:$sqalaVersion",
ivy"com.softwaremill.sttp.tapir::tapir-core:1.11.2",
ivy"com.zaxxer:HikariCP:5.1.0",
ivy"org.postgresql:postgresql:42.7.4",
ivy"org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1"
)
object test extends ScalaTests with TestModule.Munit {
def ivyDeps = Agg(
ivy"org.scalameta::munit:1.0.1"
)
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
lihaoyi
Nov 22, 2024
Replies: 1 comment 1 reply
-
Looks like an leftover debug statement during development, will get rid of it in the next release a458d47#diff-47934c0b243e400ed852f6763be9b5309d1319188aff3218a2813d4b2576f81bR42 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dragove
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like an leftover debug statement during development, will get rid of it in the next release a458d47#diff-47934c0b243e400ed852f6763be9b5309d1319188aff3218a2813d4b2576f81bR42