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



                                    
                             

                         

                                                      
 
                      

                                        


     
import mill._, scalalib._


trait AppModule extends ScalaModule{
  def scalaVersion = "2.13.0"
  def ivyDeps = Agg[Dep](
  )
  object test extends Tests{
    def testFrameworks = Seq("utest.runner.Framework")

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