-
Notifications
You must be signed in to change notification settings - Fork 94
/
ci-release.sbt
32 lines (24 loc) · 1.13 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
ThisBuild / scalaVersion := Dependencies.Version.scala213
ThisBuild / crossScalaVersions := Vector(
Dependencies.Version.scala213,
Dependencies.Version.scala212,
Dependencies.Version.scala3
)
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / developers := List(
Developer("catostrophe", "λoλcat", "[email protected]", url("https://github.com/catostrophe")),
Developer("danslapman", "Daniil Smirnov", "[email protected]", url("https://github.com/danslapman")),
Developer("odomontois", "Oleg Nizhnik", "[email protected]", url("https://github.com/odomontois")),
Developer("oskin1", "Ilya Oskin", "[email protected]", url("https://github.com/oskin1")),
)
ThisBuild / organization := "tf.tofu"
ThisBuild / organizationName := "Tofu"
ThisBuild / homepage := Some(url("https://github.com/tofu-tf/tofu"))
ThisBuild / description := "Opinionated set of tools for functional programming in Scala"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/tofu-tf/tofu"),
"[email protected]:tofu-tf/tofu.git"
)
)