-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (22 loc) · 774 Bytes
/
build.sbt
File metadata and controls
28 lines (22 loc) · 774 Bytes
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
name := "between"
organization := "nl.gn0s1s"
startYear := Some(2018)
homepage := Some(url("https://github.com/philippus/between"))
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")
)
)
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / versionPolicyIntention := Compatibility.None
Compile / packageBin / packageOptions += Package.ManifestAttributes("Automatic-Module-Name" -> "nl.gn0s1s.between")
scalaVersion := "2.13.18"
crossScalaVersions += "3.3.7"
scalacOptions += "-Xsource:3"
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.19.0" % Test
)