Skip to content

Instantly share code, notes, and snippets.

@yasuabe
Created April 18, 2019 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasuabe/5d7434a745e4ef930dd1b69671a299e4 to your computer and use it in GitHub Desktop.
Save yasuabe/5d7434a745e4ef930dd1b69671a299e4 to your computer and use it in GitHub Desktop.
sbt settings for squants exercise
name := "squants_exercise"
version := "0.1"
scalaVersion := "2.12.8"
scalacOptions ++= Seq(
"-encoding", "utf8",
"-Xfatal-warnings",
"-Ypartial-unification",
"-deprecation",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps"
)
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser",
"io.circe" %% "circe-refined"
).map(_ % "0.10.0") ++ Seq(
// "org.typelevel" %% "squants" % "1.3.0" // for pureconfig-squants
"org.typelevel" %% "squants" % "1.4.0"
) ++ Seq(
"com.github.pureconfig" %% "pureconfig",
"com.github.pureconfig" %% "pureconfig-squants"
).map(_ % "0.10.2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment