-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpublish.sbt
More file actions
35 lines (23 loc) · 1.06 KB
/
Copy pathpublish.sbt
File metadata and controls
35 lines (23 loc) · 1.06 KB
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
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:git@github.com:rssh/cps-async-connect.git"
)
)
ThisBuild / developers := List(
Developer(
id = "rssh",
name = "Ruslan Shevchenko",
email = "ruslan@shevchenko.kiev.ua",
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