Next, in the Svcs2 Terminal window you were asked to open earlier, cd to the svcs2 subdirectory of the project and then run the following command to build the svcs2 image:
mvn clean package
Once the build is finished, to run the svcs2 JAR, enter the following command:
java -jar target/sample-svcs2-runner.jar
You will get the following output:
Scotts-iMacPro:svcs2 starksm$ java -jar target/sample-svcs2-runner.jar...20:58:55 INFO [io.quarkus]] (main) Quarkus 0.15.0 started in 0.936s. Listening on: http://[::]:808220:58:55 INFO [io.quarkus]] (main) Installed features: [cdi, jaeger, resteasy, resteasy-jsonb, security, smallrye-health, smallrye-jwt, smallrye-metrics, smallrye-opentracing, smallrye-rest-client]
Here, we ...