-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
27 lines (22 loc) Β· 851 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
name := "emoji-clock"
organization := "nl.gn0s1s"
startYear := Some(2017)
homepage := Some(url("https://github.com/philippus/emoji-clock"))
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
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.emojiclock")
crossScalaVersions := List("2.12.20", "2.13.16")
scalaVersion := crossScalaVersions.value.last
libraryDependencies ++= Seq(
"com.lightbend" %% "emoji" % "1.3.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.1" % Test
)