Added Restaurant Sample Stream Apps for multiple binders in parallel.

This commit is contained in:
Corneil du Plessis
2022-06-06 13:25:36 +02:00
parent a672bfb22f
commit 81a5b1f35e
34 changed files with 2976 additions and 260 deletions

19
src/main/local/build-local.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
pushd 'timestamp-task'
./mvnw -B clean install spring-boot:build-image -Dspring-boot.build-image.imageName=springcloudtask/timestamp-task:2.0.2
popd
pushd 'timestamp-batch'
./mvnw -B clean install spring-boot:build-image -Dspring-boot.build-image.imageName=springcloudtask/timestamp-batch-task:2.0.2
popd
pushd 'restaurant-stream-apps/scdf-app-customer'
./mvnw -B clean install spring-boot:build-image -Dspring-boot.build-image.imageName=springcloudstream/scdf-app-customer:1.0.0-SNAPSHOT
popd
pushd 'restaurant-stream-apps/scdf-app-kitchen'
./mvnw -B clean install spring-boot:build-image -Dspring-boot.build-image.imageName=springcloudstream/scdf-app-kitchen:1.0.0-SNAPSHOT
popd
pushd 'restaurant-stream-apps/scdf-app-waitron'
./mvnw -B clean install spring-boot:build-image -Dspring-boot.build-image.imageName=springcloudstream/scdf-app-waitron:1.0.0-SNAPSHOT
popd