-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.sbt
27 lines (22 loc) · 1.47 KB
/
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
enablePlugins(org.nlogo.build.NetLogoExtension, org.nlogo.build.ExtensionDocumentationPlugin)
name := "gis"
version := "1.3.3"
isSnapshot := true
Compile / javaSource := baseDirectory.value / "src" / "org"
javacOptions ++= Seq("-g", "-deprecation", "-Xlint:all", "-Xlint:-serial", "-Xlint:-path", "-encoding", "us-ascii", "--release", "11")
scalaVersion := "2.12.12"
Test / scalaSource := baseDirectory.value / "src" / "test"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xfatal-warnings", "-feature", "-encoding", "us-ascii", "-release", "11")
netLogoVersion := "6.3.0"
netLogoClassManager := "org.myworldgis.netlogo.GISExtension"
netLogoTestExtras += (baseDirectory.value / "examples")
libraryDependencies ++= Seq(
"org.locationtech.jts" % "jts-core" % "1.19.0",
"commons-httpclient" % "commons-httpclient" % "3.1",
"commons-logging" % "commons-logging" % "1.2",
"commons-codec" % "commons-codec" % "1.10",
"org.ngs" % "ngunits" % "1.0.0" from "https://s3.amazonaws.com/ccl-artifacts/ngunits-1.0.jar",
"javax.media" % "jai_core" % "1.1.3" from "https://s3.amazonaws.com/ccl-artifacts/jai_core-1.1.3.jar",
"com.sun.media" % "jai_codec" % "1.1.3" from "https://s3.amazonaws.com/ccl-artifacts/jai_codec-1.1.3.jar",
"org.tinfour" % "TinfourCore" % "2.1.7",
"com.googlecode.json-simple" % "json-simple" % "1.1.1")