-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (30 loc) · 1.01 KB
/
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
32
33
34
35
val buildScalaVersion = "2.11.7"
val scalajsReactVersion = "0.9.2"
enablePlugins(ScalaJSPlugin)
organization := "io.github.widok"
name := "widok-scalajs-react-wrapper"
version := "0.1.0-SNAPSHOT"
scalaVersion := buildScalaVersion
libraryDependencies ++= Seq(
"io.github.widok" %%% "widok" % "0.2.3" withSources() withJavadoc(),
"com.github.japgolly.scalajs-react" %%% "core" % scalajsReactVersion
)
publishTo := Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
pomExtra :=
<url>https://github.com/mkotsbak/widok-scalajs-react-wrapper</url>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<scm>
<url>git://github.com/mkotsbak/widok-scalajs-react-wrapper.git</url>
</scm>
<developers>
<developer>
<id>mkotsbak</id>
<name>Marius B. Kotsbak</name>
<url>https://github.com/mkotsbak</url>
</developer>
</developers>