-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
46 lines (43 loc) · 1.39 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import com.sksamuel.scapegoat.sbt.ScapegoatSbtPlugin.autoImport._
inThisBuild(
Seq(
scalaVersion := scala212,
organization := "it.agilelab",
version := "1.9.0-SNAPSHOT",
scapegoatVersion := "1.4.15",
RepositoriesSupport.allResolvers,
WarningAsErrorsSupport.enableWarningAsErrors,
WarningAsErrorsSupport.relaxWarningsForConsole,
description := "Gis Library",
homepage := Some(url("https://github.com/agile-lab-dev/GIS.Lib")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
id = "[email protected]",
name = "Paolo Platter",
email = "[email protected]",
url = url("http://www.agilelab.it/")
),
Developer(
id = "[email protected]",
name = "Andrea Latella",
email = "[email protected]",
url = url("http://www.agilelab.it/")
),
Developer(
id = "[email protected]",
name = "Stefano Samele",
email = "[email protected]",
url = url("http://www.agilelab.it/")
)
)
))
lazy val root = (project in file("."))
.settings(
Dependencies.core,
crossScalaVersions := supportedScalaVersions,
name := "gis.lib",
moduleName := name.value
)
lazy val scala212 = "2.12.16"
lazy val supportedScalaVersions = List(scala212)