-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpublish.sbt
40 lines (26 loc) · 1.22 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
import xerial.sbt.Sonatype.sonatypeCentralHost
ThisBuild/sonatypeCredentialHost := sonatypeCentralHost
ThisBuild/publishTo := sonatypePublishToBundle.value
credentials += Credentials(Path.userHome / ".sbt" / "central_sonatype_credentials")
ThisBuild / organization := "io.github.dotty-cps-async"
ThisBuild / organizationName := "dotty-cps-async"
ThisBuild / organizationHomepage := Some(url("https://github.com/dotty-cps-async"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/dotty-cps-async/cps-async-connect"),
"scm:[email protected]:rssh/cps-async-connect.git"
)
)
ThisBuild / developers := List(
Developer(
id = "rssh",
name = "Ruslan Shevchenko",
email = "[email protected]",
url = url("https://github.com/rssh")
)
)
ThisBuild / description := "cps-async-connect: integration of dotty-cps-async with effect stacks"
ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / homepage := Some(url("https://github.com/dotty-cps-async/cps-async-connect"))
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishMavenStyle := true