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

Commit a884c16

Browse files
committed
Updating release to 1.0.18 with new 'composeServiceVersionTask' setting
1 parent 7587444 commit a884c16

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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.27")
25+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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

@@ -58,7 +58,7 @@ plugin will attempt to locate it in one of three places with the precedence orde
5858
```
5959
composeFile := // Specify the full path to the Compose File to use to create your test instance. It defaults to docker-compose.yml in your resources folder.
6060
composeServiceName := // Specify the name of the service in the Docker Compose file being tested. This setting prevents the service image from being pull down from the Docker Registry. It defaults to the sbt Project name.
61-
composeServiceVersionTask := The version to tag locally built images with in the docker-compose file. This defaults to the 'version' SettingKey.
61+
composeServiceVersionTask := // The version to tag locally built images with in the docker-compose file. This defaults to the 'version' SettingKey.
6262
composeNoBuild := // True if a Docker Compose file is to be started without building any images and only using ones that already exist in the Docker Registry. This defaults to False.
6363
composeRemoveContainersOnShutdown := // True if a Docker Compose should remove containers when shutting down the compose instance. This defaults to True.
6464
composeRemoveNetworkOnShutdown := // True if a Docker Compose should remove the network it created when shutting down the compose instance. This defaults to True.
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
3+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
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.27")
1+
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")

version.sbt

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

0 commit comments

Comments
 (0)