-
Notifications
You must be signed in to change notification settings - Fork 38
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
Showing
18 changed files
with
23 additions
and
1,762 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 |
---|---|---|
|
@@ -116,6 +116,8 @@ lazy val sharedSettings = Seq( | |
testForkedParallel in IntegrationTest := false, | ||
concurrentRestrictions in Global += Tags.limit(Tags.Test, 1), | ||
|
||
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")), | ||
homepage := Some(url("https://github.com/monix/monix-kafka")), | ||
headerLicense := Some(HeaderLicense.Custom( | ||
"""|Copyright (c) 2014-2018 by The Monix Project Developers. | ||
| | ||
|
@@ -132,9 +134,28 @@ lazy val sharedSettings = Seq( | |
|limitations under the License.""" | ||
.stripMargin)), | ||
|
||
scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/monix/monix-kafka"), | ||
"scm:[email protected]:monix/monix-kafka.git" | ||
)), | ||
|
||
developers := List( | ||
Developer( | ||
id="alexelcu", | ||
name="Alexandru Nedelcu", | ||
email="[email protected]", | ||
url=url("https://alexn.org") | ||
), | ||
Developer( | ||
id="pgawrys", | ||
name="Piotr Gawryś", | ||
email="[email protected]", | ||
url=url("https://github.com/Avasil") | ||
)), | ||
|
||
// -- Settings meant for deployment on oss.sonatype.org | ||
publishMavenStyle := true, | ||
|
||
publishTo := { | ||
val nexus = "https://oss.sonatype.org/" | ||
if (isSnapshot.value) | ||
|
@@ -144,28 +165,7 @@ lazy val sharedSettings = Seq( | |
}, | ||
|
||
publishArtifact in Test := false, | ||
pomIncludeRepository := { _ => false }, // removes optional dependencies | ||
|
||
pomExtra := | ||
<url>https://github.com/monixio/monix-kafka/</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>git@github.com:monixio/monix-kafka.git</url> | ||
<connection>scm:git:git@github.com:monixio/monix-kafka.git</connection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<id>alexelcu</id> | ||
<name>Alexandru Nedelcu</name> | ||
<url>https://alexn.org/</url> | ||
</developer> | ||
</developers> | ||
pomIncludeRepository := { _ => false } // removes optional dependencies | ||
) | ||
|
||
def mimaSettings(projectName: String) = Seq( | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.