Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 0208255

Browse files
committed
Updating to Release 1.0.30 with fix for 'dockerComposeTest -debug' parameter
1 parent 739bfc5 commit 0208255

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Steps to Enable and Configure sbt-docker-compose
2222

2323
1) Add the sbt-docker-compose plugin to your projects plugins.sbt file:
2424
```
25-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
25+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
2626
```
2727
sbt-docker-compose is an auto-plugin which requires that sbt version 0.13.5+ or sbt version 1.0.0+ be used.
2828

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("com.typesafe.sbt" %% "sbt-native-packager" % "1.1.0")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("com.typesafe.sbt" %% "sbt-native-packager" % "1.1.0")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
2-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
2+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
33
addSbtPlugin("com.waioeka.sbt" % "cucumber-plugin" % "0.1.2")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
22

3-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")

examples/no-build/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.30")
1+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.31")

src/main/scala/com/tapad/docker/ComposeTestRunner.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ trait ComposeTestRunner extends SettingsHelper with PrintFormatting {
9797

9898
// Looks for the <-debug:port> argument and will suspend test case execution until a debugger is attached
9999
val debugSettings: String = getArgValue(testDebugPortArg, args) match {
100-
case Some(port) => s"-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=$port"
100+
case Some(port) => s"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=$port"
101101
case None => ""
102102
}
103103

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "1.0.31-SNAPSHOT"
1+
version in ThisBuild := "1.0.31"

0 commit comments

Comments
 (0)