-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
d.semenov
committed
Feb 14, 2020
1 parent
811dfe4
commit d68efc8
Showing
1 changed file
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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 | ||
) | ||
)) |