-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (17 loc) · 815 Bytes
/
build.sbt
File metadata and controls
23 lines (17 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import org.nlogo.build.{ ExtensionDocumentationPlugin, NetLogoExtension }
enablePlugins(NetLogoExtension, ExtensionDocumentationPlugin)
scalaVersion := "3.7.0"
name := "LevelSpace"
version := "2.4.4"
isSnapshot := true
netLogoExtName := "ls"
netLogoClassManager := "org.nlogo.ls.LevelSpace"
netLogoVersion := "7.0.3-823cd07"
netLogoTestExtras += (baseDirectory.value / "test")
Compile / scalaSource := baseDirectory.value / "src" / "main"
Test / scalaSource := baseDirectory.value / "src" / "test"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xfatal-warnings", "-encoding", "us-ascii", "-feature", "-release", "11", "-Wunused:linted")
libraryDependencies ++= Seq(
"com.google.guava" % "guava" % "18.0",
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.2.0"
)