-
Notifications
You must be signed in to change notification settings - Fork 82
Refine the command to create Java project #252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
0013de3
to
e95d6e6
Compare
Signed-off-by: Sheng Chen <sheche@microsoft.com>
e95d6e6
to
7cca3bb
Compare
@Eskibear @testforstephen @akaroml Please take a look when you have time. The A/B testing work will be addressed in another PR, to avoid too much code change in one PR. |
src/controllers/projectController.ts
Outdated
if (contextManager.getContextValue(Context.MAVEN_ENABLED)) { | ||
projectKinds.push({ | ||
label: BuildTool.Maven, | ||
detail: "Use Maven as the build tool of your Java project", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
so would something like "Use Maven to manage your project" be simple and concise?
}, | ||
); | ||
|
||
switch (choice.label) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
choice
is possible to be undefined
, if you have more than one project kinds.
fix #249
fix #206
fix #199