Skip to content

Commit

Permalink
feat: Support create Graal Cloud Native projects. (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbalek committed May 18, 2023
1 parent cec8149 commit 4118f94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/controllers/projectController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ enum ProjectType {
MicroProfile = "MicroProfile",
JavaFX = "JavaFX",
Micronaut = "Micronaut",
GCN = "GCN",
}

async function ensureExtension(typeName: string, metaData: IProjectTypeMetadata): Promise<boolean> {
Expand Down Expand Up @@ -260,4 +261,13 @@ const projectTypes: IProjectType[] = [
createCommandId: "extension.micronaut.createProject",
},
},
{
displayName: "Graal Cloud Native",
metadata: {
type: ProjectType.GCN,
extensionId: "oracle-labs-graalvm.gcn",
extensionName: "Graal Cloud Native Tools",
createCommandId: "gcn.createGcnProject",
},
},
];

0 comments on commit 4118f94

Please sign in to comment.