Skip to content

Commit acd03f5

Browse files
authored
dynamic-router-eip: fixes compilation issues and updates buildpack command (#148)
1 parent 0e5b4d4 commit acd03f5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

dynamic-router-eip/README.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ This example shows how you can route messages between separate modules, where ea
3131

3232
==== For systems with Docker
3333

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

3636
==== For systems with Podman
3737

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

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

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

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

6464
==== Access the Swagger UI
6565

dynamic-router-eip/dynamic-router-eip-stack/main-router/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
4242
<version>${springdoc-version}</version>
4343
</dependency>
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-validation</artifactId>
47+
</dependency>
4448
</dependencies>
4549

4650

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ services:
6060
- THC_PATH=/main-router/actuator/health
6161
- THC_PORT=8082
6262
healthcheck:
63-
test: [ "CMD", "/cnb/process/health-check" ]
63+
test: [ "CMD", "/workspace/health-check" ]
6464
interval: 30s
6565
timeout: 10s
6666
retries: 5
@@ -80,7 +80,7 @@ services:
8080
- THC_PATH=/all-numbers/actuator/health
8181
- THC_PORT=8911
8282
healthcheck:
83-
test: [ "CMD", "/cnb/process/health-check" ]
83+
test: [ "CMD", "/workspace/health-check" ]
8484
interval: 30s
8585
timeout: 10s
8686
retries: 5
@@ -100,7 +100,7 @@ services:
100100
- THC_PATH=/even-numbers/actuator/health
101101
- THC_PORT=8902
102102
healthcheck:
103-
test: [ "CMD", "/cnb/process/health-check" ]
103+
test: [ "CMD", "/workspace/health-check" ]
104104
interval: 30s
105105
timeout: 10s
106106
retries: 5
@@ -120,7 +120,7 @@ services:
120120
- THC_PATH=/odd-numbers/actuator/health
121121
- THC_PORT=8901
122122
healthcheck:
123-
test: [ "CMD", "/cnb/process/health-check" ]
123+
test: [ "CMD", "/workspace/health-check" ]
124124
interval: 30s
125125
timeout: 10s
126126
retries: 5

dynamic-router-eip/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@
7373
<groupId>org.springframework.boot</groupId>
7474
<artifactId>spring-boot-starter-webflux</artifactId>
7575
</dependency>
76-
<dependency>
77-
<groupId>org.springframework.boot</groupId>
78-
<artifactId>spring-boot-starter-validation</artifactId>
79-
</dependency>
8076
<dependency>
8177
<groupId>org.apache.camel.springboot</groupId>
8278
<artifactId>camel-spring-boot-starter</artifactId>

0 commit comments

Comments
 (0)