Skip to content

Commit

Permalink
dynamic-router-eip: fixes compilation issues and updates buildpack co…
Browse files Browse the repository at this point in the history
…mmand (#148)
  • Loading branch information
mcarlett authored Nov 28, 2024
1 parent 0e5b4d4 commit acd03f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions dynamic-router-eip/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ This example shows how you can route messages between separate modules, where ea

==== For systems with Docker

mvn clean package -f dynamic-router-eip/dynamic-router-eip-stack -Pdocker
mvn clean package -f dynamic-router-eip-stack/pom.xml -Pdocker

==== For systems with Podman

mvn clean package -f dynamic-router-eip/dynamic-router-eip-stack -Ppodman
mvn clean package -f dynamic-router-eip-stack/pom.xml -Ppodman

On a system with Podman, your output might resemble the following:

Expand All @@ -59,7 +59,7 @@ When running the application stack for the Multimodule example, it should be the
Docker or Podman installed. For Podman, please confirm that you have `podman compose` installed to ensure
that you can emulate the Docker CLI when using Podman.

docker compose -f dynamic-router-eip/dynamic-router-eip-stack/project-resources/docker/compose.yaml up -d
docker compose -f dynamic-router-eip-stack/project-resources/docker/compose.yaml up -d

==== Access the Swagger UI

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
<version>${springdoc-version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
</dependencies>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
- THC_PATH=/main-router/actuator/health
- THC_PORT=8082
healthcheck:
test: [ "CMD", "/cnb/process/health-check" ]
test: [ "CMD", "/workspace/health-check" ]
interval: 30s
timeout: 10s
retries: 5
Expand All @@ -80,7 +80,7 @@ services:
- THC_PATH=/all-numbers/actuator/health
- THC_PORT=8911
healthcheck:
test: [ "CMD", "/cnb/process/health-check" ]
test: [ "CMD", "/workspace/health-check" ]
interval: 30s
timeout: 10s
retries: 5
Expand All @@ -100,7 +100,7 @@ services:
- THC_PATH=/even-numbers/actuator/health
- THC_PORT=8902
healthcheck:
test: [ "CMD", "/cnb/process/health-check" ]
test: [ "CMD", "/workspace/health-check" ]
interval: 30s
timeout: 10s
retries: 5
Expand All @@ -120,7 +120,7 @@ services:
- THC_PATH=/odd-numbers/actuator/health
- THC_PORT=8901
healthcheck:
test: [ "CMD", "/cnb/process/health-check" ]
test: [ "CMD", "/workspace/health-check" ]
interval: 30s
timeout: 10s
retries: 5
Expand Down
4 changes: 0 additions & 4 deletions dynamic-router-eip/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-starter</artifactId>
Expand Down

0 comments on commit acd03f5

Please sign in to comment.