Skip to content

Commit 4118f94

Browse files
authored
feat: Support create Graal Cloud Native projects. (#765)
1 parent cec8149 commit 4118f94

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
@@ -96,6 +96,7 @@ enum ProjectType {
9696
MicroProfile = "MicroProfile",
9797
JavaFX = "JavaFX",
9898
Micronaut = "Micronaut",
99+
GCN = "GCN",
99100
}
100101

101102
async function ensureExtension(typeName: string, metaData: IProjectTypeMetadata): Promise<boolean> {
@@ -260,4 +261,13 @@ const projectTypes: IProjectType[] = [
260261
createCommandId: "extension.micronaut.createProject",
261262
},
262263
},
264+
{
265+
displayName: "Graal Cloud Native",
266+
metadata: {
267+
type: ProjectType.GCN,
268+
extensionId: "oracle-labs-graalvm.gcn",
269+
extensionName: "Graal Cloud Native Tools",
270+
createCommandId: "gcn.createGcnProject",
271+
},
272+
},
263273
];

0 commit comments

Comments
 (0)