You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The two microservices you will deploy are called `system` and `inventory`. The `system` microservice returns the JVM system properties of the running container. The `inventory` microservice adds the properties from the `system` microservice to the inventory. This demonstrates how communication can be established between pods inside a cluster. To build these applications, navigate to the `start` directory and run the following command.
72
72
73
+
include::{common-includes}/os-tabs.adoc[]
74
+
75
+
[.tab_content.windows_section]
76
+
--
73
77
[role='command']
74
78
```
75
79
cd start
76
-
mvn clean package
80
+
mvnw.cmd clean package
77
81
```
82
+
--
83
+
84
+
[.tab_content.mac_section]
85
+
--
86
+
[role='command']
87
+
```
88
+
cd start
89
+
./mvnw clean package
90
+
```
91
+
--
92
+
93
+
[.tab_content.linux_section]
94
+
--
95
+
[role='command']
96
+
```
97
+
cd start
98
+
./mvnw clean package
99
+
```
100
+
--
78
101
79
102
80
103
@@ -352,19 +375,40 @@ Using the [hotspot=valueFrom1 hotspot=valueFrom2 hotspot=valueFrom3 hotspot=valu
352
375
353
376
// Static guide instruction
354
377
ifndef::cloud-hosted[]
355
-
Rebuild the application using `mvn clean package`.
378
+
Rebuild the application using Maven `clean` and `package` goals.
379
+
include::{common-includes}/os-tabs.adoc[]
380
+
381
+
[.tab_content.windows_section]
382
+
--
356
383
[role='command']
357
384
```
358
-
mvn clean package
385
+
mvnw.cmd clean package
359
386
```
387
+
--
388
+
389
+
[.tab_content.mac_section]
390
+
--
391
+
[role='command']
392
+
```
393
+
./mvnw clean package
394
+
```
395
+
--
396
+
397
+
[.tab_content.linux_section]
398
+
--
399
+
[role='command']
400
+
```
401
+
./mvnw clean package
402
+
```
403
+
--
360
404
endif::[]
361
405
362
406
// Cloud hosted guide instruction
363
407
ifdef::cloud-hosted[]
364
-
Rebuild the application using ***mvn clean package***.
408
+
Rebuild the application using Maven ***clean package***.
365
409
```bash
366
410
cd /home/project/guide-kubernetes-microprofile-config/start
0 commit comments