-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.sbt
21 lines (19 loc) · 899 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ThisBuild / homepage := Some(url("https://github.com/japgolly/nyaya"))
ThisBuild / licenses += ("LGPL v2.1+" -> url("http://www.gnu.org/licenses/lgpl-2.1.txt"))
ThisBuild / organization := "com.github.japgolly.nyaya"
ThisBuild / shellPrompt := ((s: State) => Project.extract(s).currentRef.project + "> ")
ThisBuild / startYear := Some(2014)
ThisBuild / versionScheme := Some("early-semver")
sonatypeProfileName := "com.github.japgolly"
val root = NyayaBuild.root
val utilJVM = NyayaBuild.utilJVM
val utilJS = NyayaBuild.utilJS
val propJVM = NyayaBuild.propJVM
val propJS = NyayaBuild.propJS
val genJVM = NyayaBuild.genJVM
val genJS = NyayaBuild.genJS
val testJVM = NyayaBuild.testJVM
val testJS = NyayaBuild.testJS
val genCirceJVM = NyayaBuild.genCirceJVM
val genCirceJS = NyayaBuild.genCirceJS
val benchmark = NyayaBuild.benchmark