-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpublish.sbt
30 lines (29 loc) · 1.04 KB
/
publish.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
import sbt._
ThisBuild / organization := "org.checkita"
ThisBuild / organizationName := "Checkita"
ThisBuild / organizationHomepage := Some(url("https://www.checkita.org/"))
ThisBuild / description := "Fast data quality framework for modern data infrastructure."
ThisBuild / licenses := List("LGPL 3.0" -> new URL("https://www.gnu.org/licenses/lgpl-3.0.txt"))
ThisBuild / homepage := Some(url("https://www.checkita.org/"))
ThisBuild / publishTo := publishRepo.value
ThisBuild / publishMavenStyle := true
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/Raiffeisen-DGTL/checkita-data-quality"),
"scm:[email protected]:Raiffeisen-DGTL/checkita-data-quality.git"
)
)
ThisBuild / developers := List(
Developer(
id = "gabb1er",
name = "Yury Dylko",
email = "[email protected]",
url = url("https://github.com/gabb1er")
),
Developer(
id = "emakhov",
name = "Egor Makhov",
email = "[email protected]",
url = url("https://github.com/emakhov")
)
)