-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
36 lines (30 loc) · 1013 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
28
29
30
31
32
33
34
35
36
val buildScalaVersion = "2.11.7"
val qcode_decoderVersion = "0.1.0"
enablePlugins(ScalaJSPlugin)
organization := "io.github.mkotsbak"
name := "scalajs-qcode-decoder"
version := "0.1.0-SNAPSHOT"
scalaVersion := buildScalaVersion
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.8.2"
)
jsDependencies += "org.webjars.bower" % "qcode-decoder" % "0.1.0" / "qcode-decoder.min.js"
publishTo := Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
pomExtra :=
<url>https://github.com/mkotsbak/scalajs-qcode-decoder</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/scalajs-qcode-decoder.git</url>
</scm>
<developers>
<developer>
<id>mkotsbak</id>
<name>Marius B. Kotsbak</name>
<url>https://github.com/mkotsbak</url>
</developer>
</developers>