-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
32 lines (27 loc) · 1.02 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
organization := "lt.dvim.ciris-hocon"
name := "ciris-hocon"
description := "Provides HOCON configuration source for Ciris"
scalaVersion := "2.13.14"
crossScalaVersions += "3.3.3"
libraryDependencies ++= Seq(
"is.cir" %% "ciris" % "3.6.0",
"com.typesafe" % "config" % "1.4.3",
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % "test",
"org.typelevel" %% "cats-effect" % "3.5.4" % "test"
)
scalafmtOnCompile := true
// show full stack traces and test case durations
Test / testOptions += Tests.Argument("-oDF")
enablePlugins(AutomateHeaderPlugin)
organizationName := "github.com/2m/ciris-hocon/contributors"
startYear := Some(2018)
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
homepage := Some(url("https://github.com/2m/ciris-hocon"))
developers += Developer(
"contributors",
"Contributors",
"https://gitter.im/2m/general",
url("https://github.com/2m/ciris-hocon/contributors")
)
sonatypeProfileName := "lt.dvim"
versionScheme := Some("semver-spec")