-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.sbt
32 lines (29 loc) · 1.14 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
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "0.1.1-SNAPSHOT"
ThisBuild / organization := "com.gilcloud.fs2"
ThisBuild / organizationName := "gilcloud"
ThisBuild / organizationHomepage := Some(url("http://gilcloud.com/"))
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
sonatypeProfileName := "com.gilcloud"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/gilcloud/fs2-sink"),
"scm:[email protected]:gilcloud/fs2-sink.git"
)
)
ThisBuild / developers := List(
Developer(
id = "gilandose",
name = "Richard Gilmore",
email = "[email protected]",
url = url("http://gilcloud.com")
)
)
ThisBuild / description := "commons sinks for using with fs2"
ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / homepage := Some(url("https://github.com/gilcloud/fs2-sink"))
// Remove all additional repository other than Maven Central from POM
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishTo := sonatypePublishToBundle.value
ThisBuild / publishMavenStyle := true