18 lines
450 B
Scala
18 lines
450 B
Scala
name := "s3thorp"
|
|
|
|
version := "0.1"
|
|
|
|
scalaVersion := "2.12.8"
|
|
|
|
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
|
|
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.0" withSources() withJavadoc()
|
|
libraryDependencies += "com.github.scopt" %% "scopt" % "4.0.0-RC2"
|
|
|
|
scalacOptions ++= Seq(
|
|
"-feature",
|
|
"-deprecation",
|
|
"-unchecked",
|
|
"-language:postfixOps",
|
|
"-language:higherKinds",
|
|
"-Ypartial-unification")
|
|
|