summaryrefslogblamecommitdiff
path: root/example/todo/build.sc
blob: beeb9473bcdf734f698fdaf479ba90fb81634f9e (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](
    ivy"org.xerial:sqlite-jdbc:3.18.0",
    ivy"io.getquill::quill-jdbc:2.5.4",
    ivy"com.lihaoyi::scalatags:0.7.0",
  )

  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",
    )
  }
}