我有一个不想导入VSCode的Scala - / Mill -Project 。
金属医生给了我以下警告:
我的项目中是否缺少某些内容?
这是我的Mill配置(build.sc
):
import mill._
import mill.define.Target
import scalalib._
trait MyModule extends ScalaModule {
def scalaVersion = "2.13.1"
object version {
val cats = "2.0.0"
..
}
object libs {
val cats = ivy"org.typelevel::cats-core:${version.cats}"
..
}
object test extends Tests {
...
}
}
object entity extends MyModule {
override def ivyDeps = {
Agg(
libs.cats,
..
)
}
}
object macros extends MyModule {
..
}
这是整个项目:https ://github.com/pme123/zio-examples
控制台输出没有显示任何警告,这里是结尾:
...
time: connected to build server in 0.33s
time: imported build in 0.41s
time: indexed workspace in 3.85s
no build target: /Users/mpa/dev/Github/pme123/zio-examples/build.sc