forked from UCLA-StarAI/ScalaDD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
20 lines (20 loc) · 899 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "edu.ucla.cs.starai",
scalaVersion := "2.12.2",
version := "0.1.0-SNAPSHOT"
)),
name := "ScalaDD",
unmanagedSourceDirectories in Compile += baseDirectory.value / "src" / "scratch" / "scala",
scalacOptions += "-Xmixin-force-forwarders:false",
scalacOptions += "-Ydelambdafy:inline",
scalacOptions += "-Yopt-inline-heuristics:everything",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % Test,
libraryDependencies += "com.google.guava" % "guava" % "22.0",
EclipseKeys.withSource := true,
EclipseKeys.withJavadoc := true,
organizationName := "Guy Van den Broeck <[email protected]>",
startYear := Some(java.time.Year.now().getValue),
licenses += ("Apache-2.0", new URL("https://www.apache.org/licenses/LICENSE-2.0.txt"))
)