-
Notifications
You must be signed in to change notification settings - Fork 22
/
publish.sbt
40 lines (37 loc) · 1.15 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
31
32
33
34
35
36
37
38
39
40
ThisBuild / organization := "ru.tinkoff"
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/TinkoffCreditSystems/gatling-picatinny.git"),
"git@https://github.com/TinkoffCreditSystems/gatling-picatinny.git",
),
)
ThisBuild / developers := List(
Developer(
id = "chepk",
name = "Sergey Chepkasov",
email = "[email protected]",
url = url("https://github.com/chepk"),
),
Developer(
id = "MaksSieve",
name = "Maksim Sitnikov",
email = "[email protected]",
url = url("https://github.com/MaksSieve"),
),
Developer(
id = "jigarkhwar",
name = "Ioann Akhaltsev",
email = "[email protected]",
url = url("https://github.com/jigarkhwar"),
),
Developer(
id = "red-bashmak",
name = "Vyacheslav Kalyokin",
email = "[email protected]",
url = url("https://github.com/red-bashmak"),
),
)
ThisBuild / description := "Gatling Utils"
ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / homepage := Some(url("https://github.com/TinkoffCreditSystems/gatling-picatinny.git"))