forked from Tinkoff/sbt-schema-registry-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublish.sbt
More file actions
21 lines (19 loc) · 735 Bytes
/
Copy pathpublish.sbt
File metadata and controls
21 lines (19 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / organization := "ru.tinkoff"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/Tinkoff/sbt-schema-registry-plugin"),
"git@github.com:Tinkoff/sbt-schema-registry-plugin.git",
),
)
ThisBuild / developers := List(
Developer(
id = "red-bashmak",
name = "Vyacheslav Kalyokin",
email = "v.kalyokin@tinkoff.ru",
url = url("https://github.com/red-bashmak"),
),
)
ThisBuild / licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / description := "Sbt plugin for download schemas from schema registry"
ThisBuild / homepage := Some(url("https://github.com/Tinkoff/sbt-schema-registry-plugin"))