forked from dnvriend/sbt-sam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bintray.sbt
30 lines (24 loc) · 925 Bytes
/
bintray.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
// enable publishing to jcenter
homepage := Some(url("https://github.com/dnvriend/sbt-sam"))
pomIncludeRepository := (_ => false)
pomExtra := <scm>
<url>https://github.com/dnvriend/sbt-sam</url>
<connection>scm:[email protected]:dnvriend/sbt-sam.git</connection>
</scm>
<developers>
<developer>
<id>dnvriend</id>
<name>Dennis Vriend</name>
<url>https://github.com/dnvriend</url>
</developer>
</developers>
publishMavenStyle := true
bintrayPackageLabels := Seq("serverless application model", "sam", "aws", "lambda", "sbt", "scala")
bintrayPackageAttributes ~=
(_ ++ Map(
"website_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/sbt-sam")),
"github_repo" -> Seq(bintry.Attr.String("https://github.com/dnvriend/sbt-sam.git")),
"issue_tracker_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/sbt-sam.git/issues/"))
)
)
//bintrayRepository := "maven"