summaryrefslogblamecommitdiff
path: root/example/staticFiles/build.sc
blob: e0f85191da61fc6ac42bc397c2e90e1d100feda9 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                    
                             
 
                                           

                         

                                                      
 
                      
                                     
                                        
     






                                                                                

   
import mill._, scalalib._


trait AppModule extends ScalaModule{
  def scalaVersion = "2.13.0"

  def forkWorkingDir = build.millSourcePath
  def ivyDeps = Agg[Dep](
  )
  object test extends Tests{
    def testFrameworks = Seq("utest.runner.Framework")

    def ivyDeps = Agg(
      ivy"com.lihaoyi::utest::0.7.1",
      ivy"com.lihaoyi::requests::0.2.0",
    )

    def forkWorkingDir = build.millSourcePath

    // redirect this to the forked `test` to make sure static file serving works
    def testLocal(args: String*) = T.command{
      test(args:_*)
    }
  }
}