Skip to content
Snippets Groups Projects
Select Git revision
  • 8179bdf2a3433af76593fae8908ce24f420d6739
  • master default protected
  • 1.0
  • 0.9
4 results

setup.php

Blame
  • build.sbt 686 B
    lazy val root = (project in file(".")).
      settings(
        name := "cosc250assignment3",
        version := "2021.0",
        scalaVersion := "3.0.0-RC3"
      )
    
    libraryDependencies ++= Seq(
      ("com.typesafe.akka" % "akka-actor" % "2.6.14").cross(CrossVersion.for3Use2_13),
      ("com.typesafe.akka" % "akka-actor-typed" % "2.6.14").cross(CrossVersion.for3Use2_13),
      ("com.typesafe.akka" % "akka-stream" % "2.6.14").cross(CrossVersion.for3Use2_13),
    )
    
    libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test
    
    // We also need to register munit as a test framework in sbt so that "sbt test" will work and the IDE will recognise
    // tests
    testFrameworks += new TestFramework("munit.Framework")