-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (24 loc) · 906 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
inThisBuild(
List(
organization := "ba.sake",
scalaVersion := "2.13.3",
publish / skip := true, // dont publish root project..
resolvers += Resolver.sonatypeRepo("releases"),
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html")),
developers += Developer("sake92", "Sakib Hadžiavdić", "[email protected]", url("https://sake.ba")),
scmInfo := Some(
ScmInfo(url("https://github.com/sake92/scalajs-router"), "scm:git:[email protected]:sake92/scalajs-router.git")
),
homepage := Some(url("https://github.com/sake92/scalajs-router"))
)
)
lazy val router = (project in file("router"))
.settings(
name := "scalajs-router",
publish / skip := false,
Compile / scalacOptions ++= List("-Ymacro-annotations"),
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "1.0.0"
)
)
.enablePlugins(ScalaJSPlugin)