forked from tofu-tf/tofu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
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", "catostrophe@pm.me", url("https://github.com/catostrophe")),
Developer("danslapman", "Daniil Smirnov", "danslapman@gmail.com", url("https://github.com/danslapman")),
Developer("odomontois", "Oleg Nizhnik", "odomontois@gmail.com", url("https://github.com/odomontois")),
Developer("oskin1", "Ilya Oskin", "ilya.arcadich@gmail.com", 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"),
"git@github.com:tofu-tf/tofu.git"
)
)