-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
31 lines (25 loc) · 890 Bytes
/
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
name := "osita"
organization := "nl.gn0s1s"
startYear := Some(2022)
homepage := Some(url("https://github.com/philippus/osita"))
licenses += ("MPL-2.0", url("https://www.mozilla.org/MPL/2.0/"))
developers := List(
Developer(
id = "philippus",
name = "Philippus Baalman",
email = "",
url = url("https://github.com/philippus")
)
)
crossScalaVersions := List("2.12.20", "3.3.4", "2.13.15")
scalaVersion := crossScalaVersions.value.last
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / versionPolicyIntention := Compatibility.None
Compile / packageBin / packageOptions += Package.ManifestAttributes(
"Automatic-Module-Name" -> "nl.gn0s1s.osita"
)
scalacOptions += "-deprecation"
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "1.0.2" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test
)