-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathci-release.sbt
36 lines (33 loc) · 1.19 KB
/
ci-release.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
ThisBuild / scalaVersion := Dependencies.Versions.scala213
ThisBuild / crossScalaVersions := Seq(
Dependencies.Versions.scala213,
Dependencies.Versions.scala212,
Dependencies.Versions.scala3
)
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("8"), JavaSpec.temurin("17"))
ThisBuild / githubWorkflowBuildPreamble += WorkflowStep.Sbt(
List("scalafmtCheckAll", "scalafmtSbtCheck"),
name = Some("Check formatting")
)
ThisBuild / githubWorkflowPublishTargetBranches := Seq()
ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
ThisBuild / developers := List(
Developer(
"janstenpickle",
"Chris Jansen",
url = url("https://github.com/janstepickle")
),
Developer(
"catostrophe",
"λoλcat",
url = url("https://github.com/catostrophe")
)
)
ThisBuild / homepage := Some(url("https://github.com/trace4cats"))
ThisBuild / scmInfo := Some(
ScmInfo(url("https://github.com/trace4cats/trace4cats-docs"), "scm:git:[email protected]:trace4cats/trace4cats-docs.git")
)
ThisBuild / organization := "io.janstenpickle"
ThisBuild / organizationName := "trace4cats"