-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
40 lines (31 loc) · 1.48 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
36
37
38
39
40
ThisBuild / homepage := Some(url("https://github.com/japgolly/webapp-util"))
ThisBuild / licenses := ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")) :: Nil
ThisBuild / organization := "com.github.japgolly.webapp-util"
ThisBuild / shellPrompt := ((s: State) => Project.extract(s).currentRef.project + "> ")
ThisBuild / startYear := Some(2021)
ThisBuild / versionScheme := Some("early-semver")
sonatypeProfileName := "com.github.japgolly"
val root = Build.root
val coreJS = Build.coreJS
val coreJVM = Build.coreJVM
val testCoreJS = Build.testCoreJS
val testCoreJVM = Build.testCoreJVM
val testNode = Build.testNode
val coreBoopickleJS = Build.coreBoopickleJS
val coreBoopickleJVM = Build.coreBoopickleJVM
val testBoopickleJS = Build.testBoopickleJS
val testBoopickleJVM = Build.testBoopickleJVM
val coreCatsEffectJS = Build.coreCatsEffectJS
val coreCatsEffectJVM = Build.coreCatsEffectJVM
val testCatsEffectJS = Build.testCatsEffectJS
val testCatsEffectJVM = Build.testCatsEffectJVM
val coreCirceJS = Build.coreCirceJS
val coreCirceJVM = Build.coreCirceJVM
val testCirceJS = Build.testCirceJS
val testCirceJVM = Build.testCirceJVM
val coreOkHttp4 = Build.coreOkHttp4
val dbPostgres = Build.dbPostgres
val testDbPostgres = Build.testDbPostgres
val examplesJVM = Build.examplesJVM
val examplesJS = Build.examplesJS
val ghpages = Build.ghpages