Skip to content

Commit ee6ddd3

Browse files
authored
Add support for wildfly (#57)
* add support for wildfly * add wildfly to MP32 SE11 supported list Signed-off-by: Jimmy Wu <[email protected]>
1 parent c6fa5b0 commit ee6ddd3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/constants.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export const MP_SERVER_LABELS: Record<string, string> = {
1818
THORNTAIL_V2: "Thorntail Version 2",
1919
KUMULUZEE: "KumuluzEE",
2020
TOMEE: "Apache TomEE 8.00-M2",
21+
WILDFLY: "WildFly",
2122
WILDFLY_SWARM: "WildFly Swarm",
2223
QUARKUS: "Quarkus",
2324
};

src/util/vscodePrompts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function askForJavaSEVersion(
4444
mpVersion: string,
4545
mpServer: string
4646
): Promise<string | undefined> {
47-
const MP32_JAVA_11_SUPPORTED = ["LIBERTY", "PAYARA_MICRO", "HELIDON", "THORNTAIL_V2"];
47+
const MP32_JAVA_11_SUPPORTED = ["LIBERTY", "PAYARA_MICRO", "HELIDON", "THORNTAIL_V2", "WILDFLY"];
4848

4949
let supportedJavaSEVersions = ["SE8"];
5050

0 commit comments

Comments
 (0)