You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds a command that generates, then executes
a `tasks.json` task that builds a binary
* After you have used the command once, you can
build a binary either through the command or
`<Ctrl>+<Shift>+B` > Quarkus: Generate a binary
* The command checks to make sure GRAALVM_HOME is set before
building the binary, and provides a link to the Quarkus docs if
it's not set up.
This PR addresses one aspect of #335
Signed-off-by: David Thompson <davthomp@redhat.com>
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ The following commands are supported for both Maven and Gradle Quarkus projects:
16
16
*`Quarkus: Generate a Quarkus project`: Generate a Quarkus project, based on https://code.quarkus.io/
17
17
*`Quarkus: Add extensions to current project`: Add Quarkus extensions to currently opened Quarkus project
18
18
*`Quarkus: Debug current Quarkus project`: Launches the Maven `quarkus:dev` plugin or the Gradle `quarkusDev` command and automatically attaches a debugger
19
+
*`Quarkus: Build executable`: Launches Maven or Gradle with the correct arguments to build an executable of the application (requires GraalVM or Mandrel to be configured)
0 commit comments