-
Notifications
You must be signed in to change notification settings - Fork 111
/
publish.sbt
44 lines (36 loc) · 1.16 KB
/
publish.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
import bintray.BintrayCredentials.api
import bintray.Keys._
bintraySettings
repository in bintray := "RxJava"
name in bintray := "RxScala"
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
bintrayOrganization in bintray := Some("reactivex")
lazy val storeBintrayCredentials = taskKey[Unit]("store bintray credentials")
storeBintrayCredentials := IO.write(credentialsFile.value, api.template(sys env "bintrayUser", sys env "bintrayKey"))
pomExtra := (
<url>https://github.com/ReactiveX/RxScala</url>
<scm>
<url>[email protected]:ReactiveX/RxScala.git</url>
<connection>scm:git:[email protected]:ReactiveX/RxScala.git</connection>
</scm>
<developers>
<developer>
<id>benjchristensen</id>
<name>Ben Christensen</name>
<email>[email protected]</email>
</developer>
<developer>
<id>jmhofer</id>
<name>Joachim Hofer</name>
<email>[email protected]</email>
</developer>
<developer>
<id>samuelgruetter</id>
<name>Samuel Grütter</name>
</developer>
<developer>
<id>zsxwing</id>
<name>Shixiong Zhu</name>
</developer>
</developers>
)