aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: c152f4b4b9486a93e56a5c94babc2ae4cb01cf61 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// shadow sbt-scalajs' crossProject and CrossType until Scala.js 1.0.0 is released

import sbtcrossproject.{crossProject, CrossType}
import scalajscrossproject.ScalaJSCrossPlugin.autoImport.{
  toScalaJSGroupID => _,
  _
}

scalaVersion in ThisBuild := "2.12.6"
version in ThisBuild := {
  import sys.process._
  ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
}
scalacOptions in ThisBuild ++= Seq(
  "-feature",
  "-language:_",
  "-unchecked",
  "-deprecation",
  "-Xlint",
  "-encoding",
  "utf8"
)

lazy val common = crossProject(JVMPlatform, JSPlatform, NativePlatform)
  .crossType(CrossType.Full)
  .settings(
    testFrameworks += new TestFramework("utest.runner.Framework"),
    libraryDependencies ++= Seq(
      "xyz.driver" %%% "spray-json-derivation" % "0.4.3",
      "com.lihaoyi" %%% "scalatags" % "0.6.7",
      "com.lihaoyi" %%% "utest" % "0.6.3" % "test"
    ),
    sourceGenerators in Compile += Def.task {
      val file = (sourceManaged in Compile).value / "scala" / "BuildInfo.scala"
      val content =
        s"""package triad
           |object BuildInfo {
           |  final val Version: String = "${version.value}"
           |}
           |""".stripMargin
      IO.write(file, content)
      Seq(file)
    }
  )
  .jsSettings(
    libraryDependencies ++= Seq(
      "org.scala-js" %%% "scalajs-dom" % "0.9.2",
      "org.scala-js" %%% "scalajs-java-time" % "0.2.4"
    )
  )
  .nativeSettings(
    scalaVersion := "2.11.12",
    nativeLinkStubs := true,
    libraryDependencies ++= Seq(
      "io.crashbox" %%% "commando" % "0.1.1"
    ),
    sourceGenerators in Compile += Def.task {
      import sys.process._
      val file = (sourceManaged in Compile).value / "scala" / "NativeBuildInfo.scala"
      val content =
        s"""package triad
           |object NativeBuildInfo {
           |  final val Platform: String = 
           |    "${("uname -s" !!).trim}/${("uname -m" !!).trim}"
           |  final val NativeVersion: String = "${nativeVersion}"
           |}
           |""".stripMargin
      IO.write(file, content)
      Seq(file)
    }
  )

lazy val commonJS = common.js
lazy val commonJVM = common.jvm
lazy val commonNative = common.native

lazy val server = project
  .settings(
    libraryDependencies ++= Seq(
      "com.typesafe.akka" %% "akka-stream" % "2.5.11",
      "com.typesafe.akka" %% "akka-http" % "10.1.0",
      "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.0",
      "com.typesafe.slick" %% "slick" % "3.2.3",
      "org.slf4j" % "slf4j-nop" % "1.6.4",
      "org.xerial" % "sqlite-jdbc" % "3.21.0.1"
    )
  )
  .dependsOn(commonJVM)
  .settings(Js.dependsOnJs(ui))

lazy val ui = project
  .enablePlugins(ScalaJSPlugin)
  .disablePlugins(RevolverPlugin)
  .dependsOn(commonJS)

lazy val client = project
  .enablePlugins(ScalaNativePlugin)
  .settings(
    scalaVersion := "2.11.12",
    nativeMode := "debug",
  )
  .dependsOn(commonNative)

lazy val root = (project in file("."))
  .aggregate(commonJS, commonJVM, commonNative, client, ui, server)
  .settings(
    publish := {},
    publishLocal := {}
  )

addCommandAlias("start", "reStart")
addCommandAlias("stop", "reStop")