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
@@ -110,11 +110,35 @@ The first step of deploying to {kube} is to build your microservices and contain
110
110
The starting Java project, which you can find in the `start` directory, is a multi-module Maven project that's made up of the `system` and `inventory` microservices. Each microservice resides in its own directory, `start/system` and `start/inventory`. Each of these directories also contains a Dockerfile, which is necessary for building Docker images. If you're unfamiliar with Dockerfiles, check out the https://openliberty.io/guides/containerize.html[Containerizing Microservices^] guide, which covers Dockerfiles in depth.
111
111
112
112
Navigate to the `start` directory and build the applications by running the following commands:
113
+
114
+
include::{common-includes}/os-tabs.adoc[]
115
+
116
+
[.tab_content.windows_section]
117
+
--
113
118
[role='command']
114
119
```
115
120
cd start
116
-
mvn clean package
121
+
mvnw.cmd clean package
117
122
```
123
+
--
124
+
125
+
[.tab_content.mac_section]
126
+
--
127
+
[role='command']
128
+
```
129
+
cd start
130
+
./mvnw clean package
131
+
```
132
+
--
133
+
134
+
[.tab_content.linux_section]
135
+
--
136
+
[role='command']
137
+
```
138
+
cd start
139
+
./mvnw clean package
140
+
```
141
+
--
118
142
119
143
120
144
@@ -451,16 +475,49 @@ When you're building your application, you might want to quickly test a change.
0 commit comments