-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
53 lines (43 loc) · 1.38 KB
/
build.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
41
42
43
44
45
46
47
48
49
50
51
52
53
organization := "org.make"
name := "git-hooks-plugin"
description :=
"""
|SBT plugin allowing to easily manage git hooks on a project
""".stripMargin
scalaVersion := "2.12.12"
sbtPlugin := true
licenses += "Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")
developers := List(
Developer(
id = "flaroche",
name = "François LAROCHE",
email = "[email protected]",
url = url("https://github.com/larochef")
),
Developer(
id = "cpestoury",
name = "Charley PESTOURY",
email = "[email protected]",
url = url("https://gitlab.com/cpestoury")
),
Developer(
id = "csalmon-legagneur",
name = "Colin SALMON-LEGAGNEUR",
email = "[email protected]",
url = url("https://gitlab.com/csalmon-")
),
Developer(
id = "pda",
name = "Philippe de ARAUJO",
email = "[email protected]",
url = url("https://gitlab.com/philippe.da")
)
)
scmInfo := Some(ScmInfo(
browseUrl = url("https://gitlab.com/makeorg/devtools/git-hooks-plugin"),
connection = "scm:git:git://gitlab.com:makeorg/devtools/git-hooks-plugin.git",
devConnection = Some("scm:git:ssh://gitlab.com:makeorg/devtools/git-hooks-plugin.git")))
startYear := Some(2017)
organizationHomepage := Some(url("https://make.org"))
homepage := Some(url("https://gitlab.com/makeorg/devtools/git-hooks-plugin"))
scalastyleConfig := baseDirectory.value / "scalastyle-config.xml"