Skip to content

Commit

Permalink
Cleanup, build.sbt config
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed Jan 31, 2018
1 parent 66c11c9 commit 3987b59
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 1,762 deletions.
46 changes: 23 additions & 23 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
|
Expand All @@ -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)
Expand All @@ -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(
Expand Down
68 changes: 0 additions & 68 deletions kafka-0.8.x/src/main/resources/monix/kafka/default.conf

This file was deleted.

71 changes: 0 additions & 71 deletions kafka-0.8.x/src/main/scala/monix/kafka/Deserializer.scala

This file was deleted.

Loading

0 comments on commit 3987b59

Please sign in to comment.