-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonatype.sbt
29 lines (26 loc) · 870 Bytes
/
sonatype.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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName in ThisBuild := "com.github.sebruck"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle in ThisBuild := true
publishArtifact in Test := false
// License of your choice
licenses in ThisBuild := Seq(
"MIT" -> url("http://www.opensource.org/licenses/mit-license.php")
)
homepage in ThisBuild := Some(
url("https://github.com/Sebruck/akka-http-graphql/")
)
scmInfo in ThisBuild := Some(
ScmInfo(
url("https://github.com/Sebruck/akka-http-graphql/"),
"scm:[email protected]:sebruck/akka-http-graphql.git"
)
)
developers in ThisBuild := List(
Developer(
id = "sebruck",
name = "Sebastian Bruckner",
email = "[email protected]",
url = url("https://github.com/Sebruck")
)
)