mirror of
https://github.com/phfroidmont/scalive.git
synced 2025-12-25 21:46:59 +01:00
11 lines
285 B
Text
11 lines
285 B
Text
package build
|
|
import mill.*, scalalib.*
|
|
|
|
object core extends ScalaModule:
|
|
def scalaVersion = "3.7.2"
|
|
def scalacOptions = Seq("-Wunused:all")
|
|
def mvnDeps = Seq(mvn"dev.zio::zio-json:0.7.44")
|
|
|
|
object test extends ScalaTests with TestModule.Utest:
|
|
def utestVersion = "0.9.0"
|
|
|