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

Commit 404ce00

Browse files
committed
Updating to Release 1.0.16 with initial Spec2 support
1 parent 35ccfe4 commit 404ce00

File tree

9 files changed

+13
-11
lines changed

9 files changed

+13
-11
lines changed

README.md

+5-1
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.25")
25+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
2626
```
2727
sbt-docker-compose is an auto-plugin which requires that sbt version 0.13.5 or higher be used.
2828

@@ -183,6 +183,10 @@ tests from running until you attach a debugger to the specified port. For exampl
183183
project needs to be built with the version of scala used by the project. If this is not configured correctly you may see
184184
an issue with the Test Runner failing to load classes.
185185
186+
There is also support for running [Specs2](https://etorreborre.github.io/specs2/) test cases. For these tests only the
187+
JVM system properties will be available for accessing information about the Docker Compose instance under test.
188+
189+
See the [**basic-with-tests-specs2**](examples/basic-with-tests-specs2) example for more details.
186190
187191
Docker Compose File Custom Tags
188192
-------------------------------
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.25")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
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.25")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
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.25")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
22

3-
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
4-
5-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26-SNAPSHOT")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
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.25")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")
+1-1
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.25")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")

examples/no-build/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.25")
1+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.26")

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "1.0.26-SNAPSHOT"
1+
version in ThisBuild := "1.0.26"

0 commit comments

Comments
 (0)