-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.sbt
27 lines (23 loc) · 806 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
inThisBuild(List(
organization := "com.vmunier",
homepage := Some(url("https://github.com/vmunier/scalajs-scripts")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"vmunier",
"Vincent Munier",
"",
url("https://github.com/vmunier")
)
),
dynverSeparator := "-"
))
name := "scalajs-scripts"
scalaVersion := "3.3.1"
crossScalaVersions := Seq("2.13.12", scalaVersion.value)
enablePlugins(SbtTwirl)
scalacOptions ++= Seq("-encoding", "utf8", "-deprecation", "-feature", "-unchecked")
libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) => Seq()
case _ => Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided")
})