forked from project-ncl/sbt-publish-with-headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
38 lines (34 loc) · 1.03 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
organization := "com.guizmaii"
name := "sbt-publish-with-headers"
homepage := Some(url("https://github.com/guizmaii-opensource/sbt-publish-with-headers"))
licenses := Seq("Apache 2.0" -> url("https://opensource.org/license/apache-2.0"))
versionScheme := Some("semver-spec")
developers :=
List(
Developer(
"matejonnet",
"Matej Lazar",
"unknown",
url("https://github.com/matejonnet"),
),
Developer(
"robobario",
"Robert Young",
"unknown",
url("https://github.com/robobario"),
),
Developer(
"guizmaii",
"Jules Ivanic",
"jules.ivanic@gmail.com",
url("https://x.com/guizmaii"),
),
)
Global / onChangedBuildSource := ReloadOnSourceChanges
scalafmtCheck := true
scalafmtSbtCheck := true
scalafmtOnCompile := true
sbtPlugin := true
scalaVersion := "2.12.20"
libraryDependencies += "com.softwaremill.sttp.client3" %% "core" % "3.10.2"
libraryDependencies += "dev.zio" %% "zio-test" % "2.1.14" % Test