Skip to content

Commit fc30f90

Browse files
committed
Remove from VSCode
1 parent cc9017e commit fc30f90

File tree

3 files changed

+0
-324
lines changed

3 files changed

+0
-324
lines changed

vscode-extensions/vscode-spring-boot/lib/Main.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414

1515
import * as commons from '@pivotal-tools/commons-vscode';
1616
import * as liveHoverUi from './live-hover-connect-ui';
17-
import * as rewrite from './rewrite';
1817

1918
import { startDebugSupport } from './debug-config-provider';
2019
import { ApiManager } from "./apiManager";
@@ -182,7 +181,6 @@ export function activate(context: ExtensionContext): Thenable<ExtensionAPI> {
182181
})));
183182
context.subscriptions.push(commands.registerCommand('vscode-spring-boot.ls.stop', () => client.stop()));
184183
liveHoverUi.activate(client, options, context);
185-
rewrite.activate(client, options, context);
186184
setLogLevelUi.activate(client, options, context);
187185
startPropertiesConversionSupport(context);
188186
if(isLlmApiReady)

vscode-extensions/vscode-spring-boot/lib/rewrite.ts

Lines changed: 0 additions & 246 deletions
This file was deleted.

vscode-extensions/vscode-spring-boot/package.json

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,6 @@
118118
}
119119
],
120120
"editor/context": [
121-
{
122-
"when": "resourceFilename == pom.xml || resourceFilename == build.gradle",
123-
"command": "vscode-spring-boot.rewrite.list.refactorings",
124-
"group": "SpringBoot"
125-
},
126-
{
127-
"when": "resourceFilename == pom.xml || resourceFilename == build.gradle",
128-
"command": "vscode-spring-boot.rewrite.list.boot-upgrades",
129-
"group": "SpringBoot"
130-
},
131121
{
132122
"when": "editorLangId == spring-boot-properties",
133123
"command": "vscode-spring-boot.props-to-yaml",
@@ -140,16 +130,6 @@
140130
}
141131
],
142132
"explorer/context": [
143-
{
144-
"when": "(resourceFilename == pom.xml || resourceFilename == build.gradle) && config.boot-java.rewrite.refactorings.on == true",
145-
"command": "vscode-spring-boot.rewrite.list.refactorings",
146-
"group": "SpringBoot"
147-
},
148-
{
149-
"when": "(resourceFilename == pom.xml || resourceFilename == build.gradle) && config.boot-java.rewrite.refactorings.on == true",
150-
"command": "vscode-spring-boot.rewrite.list.boot-upgrades",
151-
"group": "SpringBoot"
152-
},
153133
{
154134
"when": "resourceExtname == .properties",
155135
"command": "vscode-spring-boot.props-to-yaml",
@@ -229,23 +209,6 @@
229209
"title": "Show/Refresh/Hide Live Data from Spring Boot Processes",
230210
"category": "Spring Boot"
231211
},
232-
{
233-
"enablement": "config.boot-java.rewrite.refactorings.on == true",
234-
"command": "vscode-spring-boot.rewrite.list.boot-upgrades",
235-
"category": "Spring Boot",
236-
"title": "Upgrade Spring Boot Version..."
237-
},
238-
{
239-
"enablement": "config.boot-java.rewrite.refactorings.on == true",
240-
"command": "vscode-spring-boot.rewrite.list.refactorings",
241-
"category": "Spring Boot",
242-
"title": "Refactor Spring Boot Project..."
243-
},
244-
{
245-
"command": "vscode-spring-boot.rewrite.reload",
246-
"title": "Reload OpenRewrite Recipes",
247-
"category": "Spring Boot"
248-
},
249212
{
250213
"command": "sts/common-properties/reload",
251214
"title": "Reload Shared Properties Metadata",
@@ -496,45 +459,6 @@
496459
}
497460
}
498461
},
499-
{
500-
"id": "rewrite",
501-
"title": "OpenRewrite",
502-
"order": 400,
503-
"properties": {
504-
"boot-java.rewrite.refactorings.on": {
505-
"type": "boolean",
506-
"default": true,
507-
"description": "Recipes refactoring entire Maven project via commands"
508-
},
509-
"boot-java.rewrite.recipe-filters": {
510-
"type": "array",
511-
"default": [
512-
"org.openrewrite.java.spring.boot2.SpringBoot2JUnit4to5Migration",
513-
"org.openrewrite.java.spring.boot3.SpringBoot3BestPractices",
514-
"org.openrewrite.java.testing.junit5.JUnit5BestPractices",
515-
"org.openrewrite.java.testing.junit5.JUnit4to5Migration",
516-
"org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_7",
517-
"org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_4",
518-
"org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_5",
519-
"org.rewrite.java.security.*",
520-
"org.springframework.rewrite.test.*",
521-
"rewrite.test.*"
522-
],
523-
"items": {
524-
"type": "string"
525-
},
526-
"description": "Recipe ID filter patterns. Either exact ids or patterns with '*' as the wild-card"
527-
},
528-
"boot-java.rewrite.scan-files": {
529-
"type": "array",
530-
"default": [],
531-
"items": {
532-
"type": "string"
533-
},
534-
"description": "JAR and YAML files to scan for recipes"
535-
}
536-
}
537-
},
538462
{
539463
"id": "ls",
540464
"title": "Language Server",

0 commit comments

Comments
 (0)