forked from jqscala/jqscala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (32 loc) · 1.13 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
val scala3Version = "3.4.0"
val circeVersion = "0.14.1"
val scalatestVersion = "3.2.9"
val fs2Version = "3.8.0"
ThisBuild / organization := "io.github.jqscala"
ThisBuild / homepage := Some(url("https://github.com/jqscala/jqscala"))
ThisBuild / licenses := List("Creative Commons" -> url("https://creativecommons.org/licenses/by-nc-sa/4.0/"))
ThisBuild / developers := List(
Developer(
"Juan Manuel Serrano Hidalgo",
"juanmanuel.serrano@hablapps.com",
"info@hablapps.com",
url("https://hablapps.com")
)
// add more devs here
)
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
lazy val root = project
.in(file("."))
.settings(
name := "jqscala",
scalaVersion := scala3Version,
Test / packageBin / publishArtifact := true,
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"co.fs2" %% "fs2-core" % fs2Version,
"org.scalatest" %% "scalatest" % scalatestVersion % Test
)
)