-
Notifications
You must be signed in to change notification settings - Fork 73
feat: Support workspaces without wrapper #1036
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
| ): Promise<boolean> { | ||
| if ( | ||
| ( | ||
| await vscode.workspace.findFiles( |
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.
can you merge the patterns?
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.
Sure.
| this.setRootProjectFolder(rootProject); | ||
| } | ||
| } | ||
| gradleProjectFoldersOutsideRoot |
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.
for projects outside root, we still add them in?
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.
This comes from the setting gradle.nestedProjects. When it's set to an array of directories, we will support projects in the list even if they are outside root. The default value is false, this variable will be empty then. Ref: #339
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.
got it.
fix #1004
since local Gradle installation has been supported, the requirement of wrapper can be removed.