This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-management.git
The following commit(s) were added to refs/heads/main by this push:
new 2bdda176 avoid old sbt 0.13 syntax (#606)
2bdda176 is described below
commit 2bdda176f0fcbbe0ee46dcbdffe359ed7e2f00ef
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Jan 26 07:47:06 2026 +0100
avoid old sbt 0.13 syntax (#606)
---
docs/src/main/paradox/bootstrap/recipes.md | 2 +-
docs/src/main/paradox/kubernetes-deployment/building-using-sbt.md | 2 +-
docs/src/main/paradox/kubernetes-deployment/deploying.md | 2 +-
integration-test/aws-api-ecs/README.md | 4 ++--
integration-test/aws-api-ecs/scripts/publish.sh | 2 +-
integration-test/dns-api-mesos/README.md | 2 +-
integration-test/marathon-api-docker/README.md | 2 +-
integration-test/scripts/kubernetes-test.sh | 2 +-
lease-kubernetes-int-test/test.sh | 2 +-
9 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/src/main/paradox/bootstrap/recipes.md
b/docs/src/main/paradox/bootstrap/recipes.md
index 72c52202..fb2138c3 100644
--- a/docs/src/main/paradox/bootstrap/recipes.md
+++ b/docs/src/main/paradox/bootstrap/recipes.md
@@ -138,7 +138,7 @@ that is accessible from your Kubernetes cluster and update
the `kubernetes/pekko
```
$ sbt shell
> project integration-test-kubernetes-api (or integration-test-kubernetes-dns)
-> docker:publishLocal
+> Docker / publishLocal
```
You can run multiple different Pekko Bootstrap-based applications in the same
namespace,
diff --git a/docs/src/main/paradox/kubernetes-deployment/building-using-sbt.md
b/docs/src/main/paradox/kubernetes-deployment/building-using-sbt.md
index ad01f5fa..8a61be14 100644
--- a/docs/src/main/paradox/kubernetes-deployment/building-using-sbt.md
+++ b/docs/src/main/paradox/kubernetes-deployment/building-using-sbt.md
@@ -80,6 +80,6 @@ The repository can be [DockerHub](https://hub.docker.com/) or
your private repos
Now that we're setup, we can build our docker image. Run the following:
```
-sbt -Ddocker.username=<user-name> -Ddocker.registry=<registry-url>
docker:publish
+sbt -Ddocker.username=<user-name> -Ddocker.registry=<registry-url>
Docker/publish
```
diff --git a/docs/src/main/paradox/kubernetes-deployment/deploying.md
b/docs/src/main/paradox/kubernetes-deployment/deploying.md
index 8eac4790..217107d9 100644
--- a/docs/src/main/paradox/kubernetes-deployment/deploying.md
+++ b/docs/src/main/paradox/kubernetes-deployment/deploying.md
@@ -133,7 +133,7 @@ If your cluster is failing to form, carefully check over
the logs for the follow
To deploy the samples to minikube:
* Setup your local docker environment to point to minikube: `eval $(minikube
-p minikube docker-env)`
-* Deploy the image: `sbt docker:publishLocal`
+* Deploy the image: `sbt Docker / publishLocal`
* The deployment specs in the samples contain `imagePullPolicy: Never` to
prevent Kubernetes trying to download the image from an external registry
* Create the namespace and deployment:
diff --git a/integration-test/aws-api-ecs/README.md
b/integration-test/aws-api-ecs/README.md
index 99cdf704..60a12f60 100644
--- a/integration-test/aws-api-ecs/README.md
+++ b/integration-test/aws-api-ecs/README.md
@@ -50,8 +50,8 @@ before executing it, to understand what's happening inside:
`./scripts/publish.sh`
-The script uses `docker:publishLocal` and then tags and pushes the image
-manually (in favour of just using `docker:publish` as might normally be done)
+The script uses `Docker / publishLocal` and then tags and pushes the image
+manually (in favour of just using `Docker / publish` as might normally be done)
because this avoids the need to set `dockerRepository` within the SBT build
(which would then require that we inject the AWS account ID into the build).
diff --git a/integration-test/aws-api-ecs/scripts/publish.sh
b/integration-test/aws-api-ecs/scripts/publish.sh
index b30e009c..782893ab 100755
--- a/integration-test/aws-api-ecs/scripts/publish.sh
+++ b/integration-test/aws-api-ecs/scripts/publish.sh
@@ -10,7 +10,7 @@ fi
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
-(cd $DIR/../../.. && sbt integration-test-aws-api-ecs/docker:publishLocal)
+(cd $DIR/../../.. && sbt integration-test-aws-api-ecs/Docker/publishLocal)
eval $(
aws ecr get-login \
diff --git a/integration-test/dns-api-mesos/README.md
b/integration-test/dns-api-mesos/README.md
index a7370d24..67e565ec 100644
--- a/integration-test/dns-api-mesos/README.md
+++ b/integration-test/dns-api-mesos/README.md
@@ -2,7 +2,7 @@ DNS lookup example
==================
Build and publish docker image into the local repo.
-`sbt docker:publishLocal`
+`sbt Docker / publishLocal`
Tag built image:
`docker tag integration-test-dns-api:1.0
<dockerhub-id>/integration-test-dns-api:1.0`
diff --git a/integration-test/marathon-api-docker/README.md
b/integration-test/marathon-api-docker/README.md
index 2d44402c..8d68b904 100644
--- a/integration-test/marathon-api-docker/README.md
+++ b/integration-test/marathon-api-docker/README.md
@@ -71,7 +71,7 @@ How to Build
2. In order to build and publish this example into your docker hub repo run
next command from `pekko-management` work folder
-`sbt integration-test-marathon-api-docker/docker:publish`
+`sbt integration-test-marathon-api-docker/Docker/publish`
How to Deploy
-------------
diff --git a/integration-test/scripts/kubernetes-test.sh
b/integration-test/scripts/kubernetes-test.sh
index 105ac525..e29b762f 100755
--- a/integration-test/scripts/kubernetes-test.sh
+++ b/integration-test/scripts/kubernetes-test.sh
@@ -1,7 +1,7 @@
#!/bin/bash -e
eval $(minikube -p minikube docker-env)
-sbt $PROJECT_NAME/docker:publishLocal
+sbt $PROJECT_NAME/Docker/publishLocal
docker images | head
diff --git a/lease-kubernetes-int-test/test.sh
b/lease-kubernetes-int-test/test.sh
index 7e5d7acd..9d1e9246 100755
--- a/lease-kubernetes-int-test/test.sh
+++ b/lease-kubernetes-int-test/test.sh
@@ -9,7 +9,7 @@ PROJECT_DIR=lease-kubernetes-int-test
JOB_YML=$1
eval $(minikube -p minikube docker-env)
-sbt "lease-kubernetes-int-test / docker:publishLocal"
+sbt "lease-kubernetes-int-test / Docker / publishLocal"
kubectl apply -f "$PROJECT_DIR/kubernetes/rbac.yml"
kubectl delete -f "$PROJECT_DIR/kubernetes/$JOB_YML" || true
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]