-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
35 lines (27 loc) · 882 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
31
32
33
34
35
version := "0.3.0-SNAPSHOT"
scalaVersion := "2.11.2"
scalaOrganization := "org.scala-lang.virtualized"
organization := "com.huawei.scalan"
scalacOptions ++= Seq(
"-encoding", "UTF-8",
"-feature",
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-adapted-args",
"-Ywarn-inaccessible",
"-Ywarn-nullary-override",
"-language:existentials",
"-language:implicitConversions")
publishArtifact := false
libraryDependencies ++= Seq(
"com.huawei.scalan" %% "community-edition" % "0.2.9-SNAPSHOT" % "compile->test",
"com.huawei.scalan" %% "lms-backend" % "0.2.9-SNAPSHOT",
"org.scodec" %% "scodec-bits" % "1.0.5",
"org.scodec" %% "scodec-core" % "1.7.0")
libraryDependencies ++= {
if (scalaBinaryVersion.value startsWith "2.10")
Seq(compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full))
else Nil
}
enablePlugins(JmhPlugin)