Skip to content

Commit

Permalink
Merge pull request #136 from rpuigm/feature/UpdatingAngular16
Browse files Browse the repository at this point in the history
Feature/updating angular16
  • Loading branch information
rpuigm authored Dec 15, 2023
2 parents 4216a6c + 1db4d7a commit 7ee071c
Show file tree
Hide file tree
Showing 28 changed files with 658 additions and 364 deletions.
79 changes: 79 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"configurations": [
{
"type": "java",
"name": "Spring Boot-EctemplateServiceConfigServerApplication<etctemplate-service-config-server>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ectemplate.app.config.EctemplateServiceConfigServerApplication",
"projectName": "etctemplate-service-config-server",
"args": "",
"envFile": "${workspaceFolder}/.env",
"vmArgs": " -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=37071 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.jmx.enabled=true -Djava.rmi.server.hostname=localhost -Dspring.application.admin.enabled=true -Dspring.boot.project.name=etctemplate-service-config-server"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServicioEurekaServerApplication<ectemplate-servicio-eureka-server>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ostemplate.app.eureka.EctemplateServicioEurekaServerApplication",
"projectName": "ectemplate-servicio-eureka-server",
"args": "",
"envFile": "${workspaceFolder}/.env",
"vmArgs": " -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=39435 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.jmx.enabled=true -Djava.rmi.server.hostname=localhost -Dspring.application.admin.enabled=true -Dspring.boot.project.name=ectemplate-servicio-eureka-server"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServiceOauthApplication<etctemplate-service-oauth>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ectemplate.app.oauth.EctemplateServiceOauthApplication",
"projectName": "etctemplate-service-oauth",
"args": "",
"envFile": "${workspaceFolder}/.env",
"vmArgs": " -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=34949 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.jmx.enabled=true -Djava.rmi.server.hostname=localhost -Dspring.application.admin.enabled=true -Dspring.boot.project.name=etctemplate-service-oauth"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServicioPersonasApplication<etctemplate-servicio-personas>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ectemplate.app.personas.EctemplateServicioPersonasApplication",
"projectName": "etctemplate-servicio-personas",
"args": "",
"envFile": "${workspaceFolder}/.env",
"vmArgs": " -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=45735 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.jmx.enabled=true -Djava.rmi.server.hostname=localhost -Dspring.application.admin.enabled=true -Dspring.boot.project.name=etctemplate-servicio-personas"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServicioProductosApplication<ectemplate-servicio-productos>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ostemplate.app.productos.EctemplateServicioProductosApplication",
"projectName": "ectemplate-servicio-productos",
"args": "",
"envFile": "${workspaceFolder}/.env",
"vmArgs": " -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=35889 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.jmx.enabled=true -Djava.rmi.server.hostname=localhost -Dspring.application.admin.enabled=true -Dspring.boot.project.name=ectemplate-servicio-productos"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServiceZuulServerApplication<etctemplate-service-zuul-server>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ectemplate.app.zuul.EctemplateServiceZuulServerApplication",
"projectName": "etctemplate-service-zuul-server",
"args": "",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "java",
"name": "Spring Boot-EctemplateServiceZuulServerApplication<springboot-servicio-zuul-server>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "net.ectemplate.app.zuul.EctemplateServiceZuulServerApplication",
"projectName": "springboot-servicio-zuul-server",
"args": "",
"envFile": "${workspaceFolder}/.env"
}
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"boot-java.change-detection.on": true,
"maven.terminal.useJavaHome": true,
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic"
}
Loading

0 comments on commit 7ee071c

Please sign in to comment.