-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
40 lines (32 loc) · 1.29 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
sbtPlugin := true
name := "sbt-pantarhei"
organization := "com.akolov"
description := "sbt plugin to generate release notes from github pull requests"
licenses := Seq("MIT License" -> url("https://github.com/kolov/sbt-pantarhei/blob/master/LICENSE"))
homepage := Some(url("http://example.com"))
scmInfo := Some(
ScmInfo(
url("https://github.com/kolov/sbt-pantarhei"),
"scm:[email protected]:kolov/sbt-pantarhei.git"
)
)
developers := List(
Developer(
id = "kolov",
name = "Assen Kolov",
email = "[email protected]",
url = url("http://kolov-it.com")
)
)
addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3")
scalacOptions := Seq("-deprecation", "-unchecked")
credentials += Credentials(Path.userHome / ".github" / "credentials")
resolvers += "Maven.org" at "http://repo1.maven.org/maven2"
pomIncludeRepository := { _ => false }
publishMavenStyle := true
publishTo := Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
credentials += Credentials(Path.userHome / ".sonatype" / ".credentials")
libraryDependencies += "org.scalaj" %% "scalaj-http" % "2.2.1"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3" % "test"