Skip to content

Commit cb5b316

Browse files
committed
Added publish to maven settings
1 parent f517e16 commit cb5b316

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.1.0"`
8+
* In your `build.sbt` file add the following dependency: `"org.scalatest" %% "scalatest" % "0.2.0"`
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: 2 additions & 2 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.1.0-SNAPSHOT",
5+
version := "0.2.0-SNAPSHOT",
66
parallelExecution in Test := false,
77
libraryDependencies ++= Seq(
88
"org.scalatest" %% "scalatest" % "2.2.5",
@@ -16,7 +16,7 @@ lazy val commonSettings = Seq(
1616

1717
lazy val publishSettings = Seq(
1818
licenses +=("MIT", url("http://opensource.org/licenses/MIT")),
19-
publishMavenStyle := false,
19+
publishMavenStyle := true,
2020
publishArtifact in Test := false,
2121
pomIncludeRepository := { _ => false },
2222
pomExtra := <scm>

version.sbt

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

0 commit comments

Comments
 (0)