Skip to content

Commit

Permalink
finetune gitpod
Browse files Browse the repository at this point in the history
Signed-off-by: frank-bee <Frank.Bernhardt@bosch.com>
  • Loading branch information
frank-bee committed Jun 21, 2021
1 parent 06da922 commit b56f82e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ formatter-maven-cache.properties
.factorypath
.externalToolBuilders
**/application-dev-**.yml
.vscode

# IntelliJ
.idea/
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ tasks:
- name: dev backend
init: |
cd /workspace/business-partner-agent/backend
mvn package -DskipTests
mvn package -DskipTests=true -Dspotbugs.skip=true -Dpmd.skip=true
command: |
gp env BPA_HOST=`gp url 8080 | sed 's/.*https:\/\///'`
eval $(gp env -e)
Expand Down
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Launch Application",
"request": "launch",
"mainClass": "org.hyperledger.bpa.Application",
"projectName": "business-partner-agent",
"vmArgs": "-Dmicronaut.environments=dev"
}
]
}

0 comments on commit b56f82e

Please sign in to comment.