-
Notifications
You must be signed in to change notification settings - Fork 41
/
bintray.sbt
30 lines (24 loc) · 996 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/akka-persistence-inmemory"))
pomIncludeRepository := (_ => false)
pomExtra := <scm>
<url>https://github.com/dnvriend/akka-persistence-inmemory</url>
<connection>scm:git@github.com:dnvriend/akka-persistence-inmemory.git</connection>
</scm>
<developers>
<developer>
<id>dnvriend</id>
<name>Dennis Vriend</name>
<url>https://github.com/dnvriend</url>
</developer>
</developers>
publishMavenStyle := true
bintrayPackageLabels := Seq("akka", "persistence", "inmemory")
bintrayPackageAttributes ~=
(_ ++ Map(
"website_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-inmemory")),
"github_repo" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-inmemory.git")),
"issue_tracker_url" -> Seq(bintry.Attr.String("https://github.com/dnvriend/akka-persistence-inmemory.git/issues/"))
)
)
//bintrayRepository := "maven"