File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1010 "engines" : {
1111 "vscode" : " ^1.43.0"
1212 },
13+ "enableProposedApi" : true ,
14+ "workspaceTrust" : {
15+ "request" : " onDemand" ,
16+ "description" : " Extension can execute Maven commands using Maven wrapper contained in your project."
17+ },
1318 "categories" : [
1419 " Programming Languages" ,
1520 " Other"
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ export function getPathToWorkspaceStorage(...args: string[]): string | undefined
9494 return path . join ( EXTENSION_CONTEXT . storagePath , ...args ) ;
9595}
9696
97+ /** TODO: apply workspace trust API when it's ready */
9798export async function trustWrapper ( mvnw : string ) : Promise < boolean > {
9899 const key : string = "trustMavenWrapper" ;
99100 const trust : boolean | undefined = EXTENSION_CONTEXT . workspaceState . get < boolean | undefined > ( key ) ;
You can’t perform that action at this time.
0 commit comments