Skip to content

Commit a0e9394

Browse files
committed
Added project homepage and changed version to 0.2.1 to publish to Maven Central
1 parent 536dab9 commit a0e9394

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Inspired by https://github.com/chbatey/kafka-unit
55

66
## How to use
77

8-
* In your `build.sbt` file add the following dependency: `"org.scalatest" %% "scalatest" % "0.2.0"`
8+
* In your `build.sbt` file add the following dependency: `"org.scalatest" %% "scalatest" % "0.2.1"`
99
* Have your `Spec` extend the `EmbeddedKafka` trait.
1010
* Enclose the code that needs a running instance of Kafka within the `withRunningKafka` closure.
1111

build.sbt

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val commonSettings = Seq(
22
name := "scalatest-embedded-kafka",
33
organization := "net.manub",
44
scalaVersion := "2.11.7",
5-
version := "0.2.0-SNAPSHOT",
5+
homepage := Some(url("https://github.com/manub/scalatest-embedded-kafka")),
66
parallelExecution in Test := false,
77
libraryDependencies ++= Seq(
88
"org.scalatest" %% "scalatest" % "2.2.5",
@@ -19,17 +19,18 @@ lazy val publishSettings = Seq(
1919
publishMavenStyle := true,
2020
publishArtifact in Test := false,
2121
pomIncludeRepository := { _ => false },
22-
pomExtra := <scm>
23-
<url>https://github.com/manub/scalatest-embedded-kafka</url>
24-
<connection>scm:git:git@github.com:manub/scalatest-embedded-kafka.git</connection>
25-
</scm>
26-
<developers>
27-
<developer>
28-
<id>manub</id>
29-
<name>Emanuele Blanco</name>
30-
<url>http://twitter.com/manub</url>
31-
</developer>
32-
</developers>
22+
pomExtra :=
23+
<scm>
24+
<url>https://github.com/manub/scalatest-embedded-kafka</url>
25+
<connection>scm:git:git@github.com:manub/scalatest-embedded-kafka.git</connection>
26+
</scm>
27+
<developers>
28+
<developer>
29+
<id>manub</id>
30+
<name>Emanuele Blanco</name>
31+
<url>http://twitter.com/manub</url>
32+
</developer>
33+
</developers>
3334
)
3435

3536
lazy val releaseSettings = Seq(

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version := "0.3.0-SNAPSHOT"
1+
version := "0.2.1-SNAPSHOT"

0 commit comments

Comments
 (0)