forked from dnvriend/akka-persistence-jounal-writer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bintray.sbt
25 lines (20 loc) · 829 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
// enable publishing to jcenter
homepage := Some(url("https://github.com/dnvriend/akka-persistence-journal-writer"))
pomIncludeRepository := (_ => false)
pomExtra :=
<developers>
<developer>
<id>dnvriend</id>
<name>Dennis Vriend</name>
<url>https://github.com/dnvriend</url>
</developer>
</developers>
publishMavenStyle := true
bintrayPackageLabels := Seq("akka", "persistence", "journal", "writer")
bintrayPackageAttributes ~=
(_ ++ Map(
"website_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-journal-writer")),
"github_repo" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-journal-writer.git")),
"issue_tracker_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-journal-writer.git/issues/"))
)
)