-
Notifications
You must be signed in to change notification settings - Fork 14
/
release.sbt
31 lines (31 loc) · 1.09 KB
/
release.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
inThisBuild(
List(
// These are normal sbt settings to configure for release, skip if already defined
organization := "com.soundcloud",
organizationName := "SoundCloud",
organizationHomepage := Some(url("https://developers.soundcloud.com/")),
description := "An implementation of the Twirp protocol on top of Finagle",
licenses := Seq("Apache 2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
homepage := Some(url("https://github.com/soundcloud/twinagle")),
developers := List(
Developer(
id = "ccmtaylor",
name = "Christopher Taylor",
email = "christopher.taylor@soundcloud.com",
url = url("https://github.com/ccmtaylor")
),
Developer(
id = "oberkowitz",
name = "Oren Berkowitz",
email = "oren.berkowitz@soundcloud.com",
url = url("https://github.com/oberkowitz")
)
),
scmInfo := Some(
ScmInfo(
url("https://github.com/soundcloud/twinagle"),
"scm:git@github.com:soundcloud/twinagle.git"
)
)
)
)