summaryrefslogblamecommitdiff
path: root/example/decorated/build.sc
blob: 2816643a4add3cb339c8b90aaac40c98df6d885d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                    
                                 



                                                      
 

                                     
                                        


     
import mill._, scalalib._


trait AppModule extends ScalaModule{
  def scalaVersion = "2.12.6"
  def ivyDeps = Agg(
    ivy"com.lihaoyi::cask:0.1.9",
  )

  object test extends Tests{
    def testFrameworks = Seq("utest.runner.Framework")

    def ivyDeps = Agg(
      ivy"com.lihaoyi::utest::0.6.3",
      ivy"com.lihaoyi::requests::0.1.5",
    )
  }
}