Guest User

Untitled

a guest
Oct 19th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 1.11 KB | None | 0 0
  1. val Http4sVersion = "0.21.8"
  2. val CirceVersion = "0.13.0"
  3. val Specs2Version = "4.10.5"
  4. val LogbackVersion = "1.2.3"
  5.  
  6. lazy val root = (project in file("."))
  7.   .settings(
  8.     organization := "com.drew",
  9.     name := "rider",
  10.     version := "0.0.1-SNAPSHOT",
  11.     scalaVersion := "2.13.3",
  12.     libraryDependencies ++= Seq(
  13.       "org.http4s"      %% "http4s-blaze-server" % Http4sVersion,
  14.       "org.http4s"      %% "http4s-blaze-client" % Http4sVersion,
  15.       "org.http4s"      %% "http4s-circe"        % Http4sVersion,
  16.       "org.http4s"      %% "http4s-dsl"          % Http4sVersion,
  17.       "io.circe"        %% "circe-generic"       % CirceVersion,
  18.       "org.specs2"      %% "specs2-core"         % Specs2Version % "test",
  19.       "ch.qos.logback"  %  "logback-classic"     % LogbackVersion
  20.     ),
  21.     addCompilerPlugin("org.typelevel" %% "kind-projector"     % "0.10.3"),
  22.     addCompilerPlugin("com.olegpy"    %% "better-monadic-for" % "0.3.1")
  23.   )
  24.  
  25. scalacOptions ++= Seq(
  26.   "-deprecation",
  27.   "-encoding", "UTF-8",
  28.   "-language:higherKinds",
  29.   "-language:postfixOps",
  30.   "-feature",
  31.   "-Xfatal-warnings",
  32. )
Add Comment
Please, Sign In to add comment