-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (20 loc) · 820 Bytes
/
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
organization := "tmiya"
name := "Algebra"
version := "0.1.0"
scalaVersion := "2.11.0"
// parallelExecution in Test := false
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
)
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.4.4" % "test",
"org.scalaz.stream" %% "scalaz-stream" % "0.5"
)
scalacOptions ++= Seq("-encoding", "UTF-8")
javacOptions ++= Seq("-encoding", "UTF-8")
// Specs2:JUnit:XmlReport
testOptions in Test += Tests.Argument("junitxml", "console")
publishArtifact in (Compile, packageDoc) := false