-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
40 lines (25 loc) · 856 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
37
38
39
40
name := "platform-config-android"
//version := "2017.7.0-SNAPSHOT"
enablePlugins(ScalaJSPlugin)
val scala212 = "2.12.4"
scalaVersion := scala212
crossScalaVersions := Seq(scala212)
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-language:implicitConversions"
)
libraryDependencies += "scalajs-react-interface" %%% "universal" % "2018.2.2-RC" % Provided
//bintray
resolvers += Resolver.jcenterRepo
resolvers ++= Seq(Resolver.bintrayRepo("scalajs-react-interface", "maven"),
Resolver.bintrayRepo("scalajs-plus", "maven"))
organization := "scalajs-react-interface"
licenses += ("Apache-2.0", url(
"https://www.apache.org/licenses/LICENSE-2.0.html"))
bintrayOrganization := Some("scalajs-react-interface")
bintrayRepository := "maven"
publishArtifact in Test := false
//Test
scalaJSStage in Global := FastOptStage