Skip to content

Instantly share code, notes, and snippets.

Created May 12, 2016 06:56
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 anonymous/e1642312b0dc1b71f1c0dba134ddbc75 to your computer and use it in GitHub Desktop.
Save anonymous/e1642312b0dc1b71f1c0dba134ddbc75 to your computer and use it in GitHub Desktop.
the description for this gist
import sbt.Keys._
object Settings extends Dependencies {
val modulesSettings = Seq(
organization := "io.scalac",
version := "0.1.0-SNAPSHOT",
scalaVersion := scalaVersionUsed,
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-Ywarn-dead-code",
"-Ywarn-infer-any",
"-Ywarn-unused-import",
"-Xfatal-warnings",
"-Xlint"
),
resolvers ++= commonResolvers,
libraryDependencies ++= mainDeps,
libraryDependencies ++= testDeps map (_ % "test")
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment