Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.97 KB | None | 0 0
  1. scalaVersion := "2.11.8"
  2.  
  3. scalacOptions ++= Seq(
  4.   "-deprecation",
  5.   "-encoding", "UTF-8",
  6.   "-feature",
  7.   "-language:existentials",
  8.   "-language:higherKinds",
  9.   "-language:implicitConversions",
  10.   "-unchecked",
  11.   "-Xfatal-warnings",
  12.   "-Xlint",
  13.   "-Yno-adapted-args",
  14.   "-Ylog-classpath",
  15.   "-Ywarn-dead-code",
  16.   "-Ywarn-numeric-widen",
  17.   "-Ywarn-value-discard",
  18.   "-Xfuture",
  19.   "-Ywarn-unused-import"
  20. )
  21.  
  22. incOptions := incOptions.value.withNameHashing(true)
  23.  
  24. resolvers +=
  25.   "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/releases"
  26.  
  27. libraryDependencies ++= Seq(
  28.   "org.typelevel" %% "cats"             % "0.6.1",
  29.   "org.docx4j"     % "docx4j"           % "3.2.2",
  30.   "org.scalatest" %% "scalatest"        % "2.2.6" % "test",
  31.   "org.tpolecat"  %% "atto-core"        % "0.5.0-M2",
  32.   "org.tpolecat"  %% "atto-compat-cats" % "0.5.0-M2",
  33.   "io.circe"      %% "circe-core"       % "0.4.1",
  34.   "io.circe"      %% "circe-generic"    % "0.4.1"
  35. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement