-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.sbt
42 lines (25 loc) · 1.14 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name := "scala-parsers"
version := "0.2.3"
scalaVersion := "2.11.2"
crossScalaVersions := Seq("2.11.2", "2.10.4")
description := "A Trifecta inspired parser in Scala."
licenses += ("BSD Simplified", url("https://github.com/ermine-language/ermine-parser/blob/master/LICENSE"))
homepage := Some(url("https://github.com/ermine-language/ermine-parser"))
bintrayOrganization := Some("ermine")
bintrayReleaseOnPublish in ThisBuild := false
publishMavenStyle := true
scalacOptions ++=
Seq("-encoding", "UTF-8", "-Yrecursion", "50", "-deprecation",
"-unchecked", "-Xlint", "-feature",
"-language:implicitConversions", "-language:higherKinds",
"-language:existentials", "-language:postfixOps")
resolvers += Resolver.bintrayRepo("non", "maven") // for kind-projector
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.5.2")
parallelExecution := true
javacOptions += "-Xlint"
val scalazVersion = "7.0.6"
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % scalazVersion,
"org.scalaz" %% "scalaz-scalacheck-binding" % scalazVersion % "test"
)
initialCommands in console := "import scalaz._, Scalaz._; import scalaparsers._"