-
Notifications
You must be signed in to change notification settings - Fork 321
/
sonatype.sbt
18 lines (17 loc) · 1.03 KB
/
sonatype.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import xerial.sbt.Sonatype._
ThisBuild / sonatypeProfileName := "org.msgpack"
ThisBuild / homepage := Some(url("https://msgpack.org/"))
ThisBuild / licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/msgpack/msgpack-java"),
"scm:[email protected]:msgpack/msgpack-java.git"
)
)
ThisBuild / developers := List(
Developer(id = "frsyuki", name = "Sadayuki Furuhashi", email = "[email protected]", url = url("https://github.com/frsyuki")),
Developer(id = "muga", name = "Muga Nishizawa", email = "[email protected]", url = url("https://github.com/muga")),
Developer(id = "oza", name = "Tsuyoshi Ozawa", email = "[email protected]", url = url("https://github.com/oza")),
Developer(id = "komamitsu", name = "Mitsunori Komatsu", email = "[email protected]", url = url("https://github.com/komamitsu")),
Developer(id = "xerial", name = "Taro L. Saito", email = "[email protected]", url = url("https://github.com/xerial"))
)