forked from gilcloud/sbt-gitlab
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
52 lines (41 loc) · 1.17 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
name := "sbt-gitlab"
organization := "nl.zolotko.sbt"
description := "publishing and dependency resolution for gitlab both private and hosted using header auth"
sbtPlugin := true
licenses := Seq(
"Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt")
)
developers := List(
Developer(
"gilandose",
"Richard Gilmore",
"richard.gilmore gmail com",
url("http://gilcloud.com/")
),
Developer(
"azolotko",
"Alex Zolotko",
"azolotko@gmail.com",
url("https://github.com/azolotko")
)
)
startYear := Some(2020)
homepage := scmInfo.value map (_.browseUrl)
scmInfo := Some(
ScmInfo(
url("https://github.com/azolotko/sbt-gitlab"),
"scm:git:git@github.com:azolotko/sbt-gitlab.git"
)
)
console / initialCommands := "import nl.zolotko.sbt.gitlab._"
enablePlugins(SbtPlugin)
scriptedBufferLog := false
scalacOptions += "-target:jvm-1.8"
scriptedLaunchOpts := (
scriptedLaunchOpts.value ++
Seq("-Xmx1g", "-Dsbt.gitlab.version=" + version.value)
)
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeProfileName := "nl.zolotko.sbt"
versionScheme := Some("semver-spec")