-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (44 loc) · 1.51 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
lazy val `sbt-github-changelog` = project
.in(file("."))
.enablePlugins(SbtPlugin)
.settings(
name := "sbt-github-changelog",
version := "0.4.0",
organization := "org.thehive-project",
organizationName := "TheHive project",
organizationHomepage := Some(url("http://thehive-project.org/")),
homepage := Some(url("https://github.com/TheHive-Project/sbt-github-changelog")),
description := "SBT plugin to generate change log file from github milestones",
versionScheme := Some("semver-spec"),
scmInfo := Some(
ScmInfo(
url("https://github.com/TheHive-Project/sbt-github-changelog"),
"scm:[email protected]:TheHive-Project/sbt-github-changelog.git"
)
),
developers := List(
Developer(
id = "toom",
name = "Thomas",
email = "[email protected]",
url = url("https://github.com/To-om")
)
),
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")),
libraryDependencies ++= Seq(
"com.softwaremill.sttp.client" %% "core" % "2.2.9",
"com.softwaremill.sttp.client" %% "play-json" % "2.2.9"
),
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-language:_",
"-target:jvm-1.8",
"-encoding", "UTF-8",
"-Ypartial-unification",
"-Ywarn-unused-import"
),
pomIncludeRepository := { _ => false },
publishTo := sonatypePublishToBundle.value,
publishMavenStyle := true
)