forked from apollographql/apollo-scalajs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (16 loc) · 626 Bytes
/
build.sbt
File metadata and controls
26 lines (16 loc) · 626 Bytes
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
enablePlugins(BintrayPlugin)
organization in ThisBuild := "com.apollographql"
scalaVersion in ThisBuild := "2.12.4"
scalacOptions in ThisBuild ++= Seq("-feature", "-deprecation")
licenses in ThisBuild += ("MIT", url("http://opensource.org/licenses/MIT"))
bintrayOrganization in ThisBuild := Some("apollographql")
lazy val root = project.in(file(".")).withId("apollo-scalajs").aggregate(
core, react
).settings(
publish := {},
publishLocal := {}
)
lazy val core = project
lazy val react = project.dependsOn(core)
lazy val tests = project.dependsOn(core, react)
lazy val example = project.dependsOn(core, react)