Skip to content

Commit

Permalink
feat: Support creating new Gradle project (#583)
Browse files Browse the repository at this point in the history
Signed-off-by: sheche <sheche@microsoft.com>
  • Loading branch information
jdneo authored Jan 18, 2022
1 parent c57c34f commit 2f66bb1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/controllers/projectController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ interface IProjectTypeQuickPick extends QuickPickItem {
enum ProjectType {
NoBuildTool = "NoBuildTool",
Maven = "Maven",
Gradle = "Gradle",
SpringBoot = "SpringBoot",
Quarkus = "Quarkus",
MicroProfile = "MicroProfile",
Expand Down Expand Up @@ -196,6 +197,16 @@ const projectTypes: IProjectType[] = [
createCommandId: "maven.archetype.generate",
},
},
{
displayName: "Gradle",
metadata: {
type: ProjectType.Gradle,
extensionId: "vscjava.vscode-gradle",
extensionName: "Gradle for Java",
leastExtensionVersion: "3.10.0",
createCommandId: "gradle.createProject",
},
},
{
displayName: "Spring Boot",
metadata: {
Expand Down

0 comments on commit 2f66bb1

Please sign in to comment.