-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (17 loc) · 744 Bytes
/
build.sbt
File metadata and controls
31 lines (17 loc) · 744 Bytes
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
version := "0.1"
organization := "Stanford_PPL"
retrieveManaged := true
scalaOrganization := "org.scala-lang.virtualized"
scalaVersion := virtScala
scalaSource in Compile <<= baseDirectory(_ / "src")
scalaSource in Test <<= baseDirectory(_ / "test-src")
scalacOptions += "-Yvirtualize"
//scalacOptions += "-Yvirtpatmat"
scalacOptions in Compile ++= Seq("-unchecked", "-deprecation")
libraryDependencies += "org.scala-lang.virtualized" % "scala-library" % virtScala
libraryDependencies += "org.scala-lang.virtualized" % "scala-compiler" % virtScala
libraryDependencies += scalaTest
// tests are not thread safe
parallelExecution in Test := false
// disable publishing of main docs
publishArtifact in (Compile, packageDoc) := false