Skip to content

Commit 572b6d2

Browse files
dbalekjdneo
andauthored
feat: Support create Micronaut projects (#757)
--------- Co-authored-by: Sheng Chen <[email protected]>
1 parent 3512b8b commit 572b6d2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/controllers/projectController.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ enum ProjectType {
9595
Quarkus = "Quarkus",
9696
MicroProfile = "MicroProfile",
9797
JavaFX = "JavaFX",
98+
Micronaut = "Micronaut",
9899
}
99100

100101
async function ensureExtension(typeName: string, metaData: IProjectTypeMetadata): Promise<boolean> {
@@ -250,4 +251,13 @@ const projectTypes: IProjectType[] = [
250251
}],
251252
},
252253
},
254+
{
255+
displayName: "Micronaut",
256+
metadata: {
257+
type: ProjectType.Micronaut,
258+
extensionId: "oracle-labs-graalvm.micronaut",
259+
extensionName: "GraalVM Tools for Micronaut",
260+
createCommandId: "extension.micronaut.createProject",
261+
},
262+
},
253263
];

0 commit comments

Comments
 (0)