-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.sbt
44 lines (34 loc) · 1.88 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
43
44
import AssemblyKeys._
name := "multibot"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies ++= {
val scalazVersion = "7.1.0-SNAPSHOT"
val scalazContribVersion = "0.1.4"
val crossVersion = CrossVersion.fullMapped{case "2.10.4" => "2.10"}
val shapeCrossVersion = CrossVersion.fullMapped{case "2.10.4" => "2.10.2"}
val scheckCrossVersion = CrossVersion.fullMapped{case "2.10.4" => "2.10"}
Seq(
"com.chuusai" %% "shapeless" % "2.0.0-SNAPSHOT" cross shapeCrossVersion,
"org.scalaz" %% "scalaz-core" % scalazVersion cross crossVersion,
"org.scalaz" %% "scalaz-iteratee" % scalazVersion cross crossVersion,
"org.scalaz" %% "scalaz-effect" % scalazVersion cross crossVersion,
"org.scalaz.stream" %% "scalaz-stream" % "0.2-SNAPSHOT", // scalazVersion cross crossVersion,
"org.scalaz" %% "scalaz-typelevel" % scalazVersion cross crossVersion,
"org.scalaz" %% "scalaz-scalacheck-binding" % scalazVersion cross crossVersion,
"org.typelevel" %% "scalaz-contrib-210" % scalazContribVersion cross crossVersion,
"org.scalaz" %% "scalaz-concurrent" % scalazVersion cross crossVersion,
"pircbot" % "pircbot" % "1.5.0",
"org.scala-lang" % "scala-compiler" % "2.10.4",
"org.scalacheck" %% "scalacheck" % "1.10.2-SNAPSHOT" cross scheckCrossVersion,
"net.databinder" %% "dispatch-http" % "0.8.8",
"org.json4s" %% "json4s-native" % "3.1.0",
"org.spire-math" %% "spire" % "0.4.0-M2" cross crossVersion,
// "net.liftweb" %% "lift-util" % "2.5",
"org.jruby" % "jruby-complete" % "1.7.11"
)}
// autoCompilerPlugins := true
assembleArtifact in packageBin := false
seq(assemblySettings: _*)
scalacOptions ++= Seq("-feature", "-language:_", "-deprecation", "-Xexperimental")
resolvers += "Sonatype Nexus Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"