-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
36 lines (30 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
val scala3Version = "3.3.0"
val circeVersion = "0.14.1"
val scalatestVersion = "3.2.9"
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",
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,
"org.scalatest" %% "scalatest" % scalatestVersion % Test
)
)