Commit 5c75862 1 parent d7805f3 commit 5c75862 Copy full SHA for 5c75862
File tree 2 files changed +35
-0
lines changed
spring-petclinic-api-gateway
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : "Spring Petclinic Microservices" ,
3
+ // Java Development Container Images https://mcr.microsoft.com/en-us/product/devcontainers/java/tags
4
+ "image" : "mcr.microsoft.com/devcontainers/java:17-bullseye" ,
5
+ // Features list https://containers.dev/features
6
+ "features" : {
7
+ "ghcr.io/devcontainers/features/java:1" : {
8
+ "installMaven" : "true" ,
9
+ "installGradle" : "false"
10
+ } ,
11
+ "ghcr.io/devcontainers/features/azure-cli:1" :{ } , // Install Azure CLI
12
+ "ghcr.io/devcontainers/features/docker-in-docker:2" :{ } , // install docker
13
+ } ,
14
+ "customizations" : {
15
+ // Configure properties specific to VScode
16
+ "vscode" : {
17
+ "settings" : {
18
+ // VSCode settings https://github.com/redhat-developer/vscode-java/blob/master/README.md
19
+ "java.server.launchMode" : "Standard"
20
+ } ,
21
+ "extensions" :[
22
+ "vscjava.vscode-java-pack" ,
23
+ "vscjava.vscode-maven" ,
24
+ "github.vscode-github-actions" ,
25
+ "github.vscode-pull-request-github" ,
26
+ "redhat.vscode-xml" ,
27
+ "vmware.vscode-boot-dev-pack" ,
28
+ "mhutchie.git-graph"
29
+ ]
30
+ } ,
31
+ } ,
32
+ "forwardPorts" : [ 8080 , 8888 , 8761 ]
33
+ }
Original file line number Diff line number Diff line change 152
152
<version >${wro4j.version} </version >
153
153
<executions >
154
154
<execution >
155
+ <!-- Configuration tips for VS Code in Dev Container -->
156
+ <?m2e execute onConfiguration ?>
155
157
<phase >generate-resources</phase >
156
158
<goals >
157
159
<goal >run</goal >
You can’t perform that action at this time.
0 commit comments