Skip to content

Commit

Permalink
fix release plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
d.semenov committed Feb 14, 2020
1 parent 811dfe4 commit d68efc8
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,18 @@ addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.10")
licenses in ThisBuild := Seq(
"MIT" -> url("https://github.com/dmateusp/fs2-aws/blob/master/LICENSE")
)
developers in ThisBuild := List(
Developer(
id = "dmateusp",
name = "Daniel Mateus Pires",
email = "[email protected]",
url = url("https://github.com/dmateusp")
)
)

lazy val publishSettings = Seq(
publishMavenStyle := true,
Test / publishArtifact := true,
pomIncludeRepository := (_ => false),
pomIncludeRepository := (_ => false)
)

inThisBuild(List(
licenses := Seq(
"MIT" -> url("https://raw.githubusercontent.com/laserdisc-io/fs2-aws/master/LICENSE")
),
homepage := Some(url("https://github.com/laserdisc-io/fs2-aws/")),
developers := List(
Developer(
"dmateusp",
Expand All @@ -89,11 +88,8 @@ lazy val publishSettings = Seq(
"scm:git:[email protected]:laserdisc-io/fs2-aws.git"
)
),
homepage := Some(url("https://github.com/laserdisc-io/fs2-aws/")),
licenses := Seq(
"MIT" -> url("https://raw.githubusercontent.com/laserdisc-io/fs2-aws/master/LICENSE")
),

pgpPublicRing := file(".travis/local.pubring.asc"),
pgpSecretRing := file(".travis/local.secring.asc"),
releaseEarlyWith := SonatypePublisher
)
))

0 comments on commit d68efc8

Please sign in to comment.