forked from gilcloud/sbt-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (33 loc) · 1.03 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
inThisBuild(
List(
organization := "io.github.tangramflex",
homepage := Some(url("https://github.com/TangramFlex/sbt-gitlab")),
versionScheme := Some("early-semver"),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
description := "publishing and dependency resolution for gitlab both private and hosted using header auth",
developers :=
Developer(
"gilandose",
"Richard Gilmore",
"richard.gilmore gmail com",
url("http://gilcloud.com/")
)
:: Developer(
"listba",
"Ben List",
"benjamin.list tangramflex com",
url("https://github.com/listba/")
)
:: Nil,
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
)
)
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
name := "sbt-gitlab",
console / initialCommands := "import io.github.tangramflex.sbt.gitlab._"
)