-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
43 lines (40 loc) · 1.06 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
41
42
43
val scala3Version = "3.2.0"
val scala2Version = "2.13.8"
ThisBuild / scalaVersion := scala2Version
ThisBuild / crossScalaVersions := List(scala3Version)
ThisBuild / organization := "com.bilal-fazlani"
ThisBuild / organizationName := "Bilal Fazlani"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/bilal-fazlani/jslt-parser"),
"https://github.com/bilal-fazlani/jslt-parser.git"
)
)
ThisBuild / developers := List(
Developer(
"bilal-fazlani",
"Bilal Fazlani",
url("https://bilal-fazlani.com")
)
)
ThisBuild / licenses := List(
"MIT License" -> url(
"https://github.com/bilal-fazlani/jslt-parser/blob/main/LICENSE"
)
)
ThisBuild / homepage := Some(
url("https://github.com/bilal-fazlani/jslt-parser")
)
ThisBuild / testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
lazy val root = project
.in(file("."))
.settings(
name := "jslt-parser",
moduleName := "jslt-parser",
libraryDependencies ++= Seq(
Libs.zioParser,
Libs.zioTest,
Libs.zioTestSbt
)
)