This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
java-openliberty: define APPSODY_DEBUG_PORT (#818)
* java-openliberty: define APPSODY_DEBUG_PORT * Added task and launch json files * Readd to gitignore * Add new lines * Bump version
- Loading branch information
Showing
6 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
incubator/java-openliberty/templates/default/.vscode/launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Appsody: Attach java debugger", | ||
"type": "java", | ||
"request": "attach", | ||
"hostName": "localhost", | ||
"port": 7777 | ||
} | ||
] | ||
} |
47 changes: 47 additions & 0 deletions
47
incubator/java-openliberty/templates/default/.vscode/tasks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Appsody: run", | ||
"type": "shell", | ||
"command": "appsody run", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: debug", | ||
"type": "shell", | ||
"command": "appsody debug", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: test", | ||
"type": "shell", | ||
"command": "appsody test", | ||
"group": "test", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: build", | ||
"type": "shell", | ||
"command": "appsody build", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: deploy", | ||
"type": "shell", | ||
"command": "appsody deploy", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: stop", | ||
"type": "shell", | ||
"command": "appsody stop", | ||
"group": "build", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
incubator/java-openliberty/templates/kafka/.vscode/launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Appsody: Attach java debugger", | ||
"type": "java", | ||
"request": "attach", | ||
"hostName": "localhost", | ||
"port": 7777 | ||
} | ||
] | ||
} |
47 changes: 47 additions & 0 deletions
47
incubator/java-openliberty/templates/kafka/.vscode/tasks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Appsody: run", | ||
"type": "shell", | ||
"command": "appsody run", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: debug", | ||
"type": "shell", | ||
"command": "appsody debug", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: test", | ||
"type": "shell", | ||
"command": "appsody test", | ||
"group": "test", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: build", | ||
"type": "shell", | ||
"command": "appsody build", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: deploy", | ||
"type": "shell", | ||
"command": "appsody deploy", | ||
"group": "build", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Appsody: stop", | ||
"type": "shell", | ||
"command": "appsody stop", | ||
"group": "build", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |