diff --git a/about/features.md b/about/features.md
index a848c28a0..bb5e3564a 100644
--- a/about/features.md
+++ b/about/features.md
@@ -61,14 +61,14 @@ Following is an index of the features currently covered by CAP, with status and
-| Editors/IDE Support | Application Studio | VS Code | Eclipse |
-|--------------------------|:------------------:|:-------:|:-------:|
-| CDS Syntax Highlighting |
**[SAP Fiori](https://developers.sap.com/topics/ui-development.html)** and **[SAP HANA](https://developers.sap.com/topics/hana.html)** | You can also choose other UI technologies, like [Vue.js](../get-started/in-a-nutshell#vue), or databases, by providing new database integrations. |
-| **Dedicated tools support** provided in [SAP Business Application Studio](../tools/#bastudio), and [Visual Studio Code](../tools/#vscode) or [Eclipse](../java/getting-started#eclipse). | CAP doesn't depend on those tools. Everything in CAP can be done using the [`@sap/cds-dk`](../get-started/jumpstart) CLI and any editor or IDE of your choice. |
+| **Dedicated tools support** provided in [SAP Business Application Studio](../tools/#bastudio) or [Visual Studio Code](../tools/#vscode). | CAP doesn't depend on those tools. Everything in CAP can be done using the [`@sap/cds-dk`](../get-started/jumpstart) CLI and any editor or IDE of your choice. |
### Key Concepts & Paradigms
diff --git a/get-started/troubleshooting.md b/get-started/troubleshooting.md
index 5a8db6a84..7a311e098 100644
--- a/get-started/troubleshooting.md
+++ b/get-started/troubleshooting.md
@@ -236,7 +236,7 @@ In addition you might want to remove the H2 dependency, which is included in the
If you don't want to exclude dependencies completely, but make sure that an in-memory H2 database **isn't** used, you can disable Spring Boot's `DataSource` auto-configuration, by annotating the `Application.java` class with `@SpringBootApplication(exclude = org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.class)`. In that mode CAP Java however can still react on explicit data source configurations or database bindings.
-### What to Do About Maven-Related Errors in Eclipse's Problems View? { #eclipse}
+### What to Do About Maven-Related Errors in Eclipse's Problems View?
- In _Problems_ view, execute _Quick fix_ from the context menu if available. If Eclipse asks you to install additional Maven Eclipse plug-ins to overcome the error, do so.
- Errors like _'Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:exec-maven-plugin)_ can be ignored. Do so in _Problems_ view > _Quick fix_ context menu > _Mark goal as ignored in Eclipse preferences_.
diff --git a/java/getting-started.md b/java/getting-started.md
index 0a4e1d755..b2d912f94 100644
--- a/java/getting-started.md
+++ b/java/getting-started.md
@@ -21,7 +21,7 @@ status: released
## Introduction
-The CAP Java SDK enables developing CAP applications in Java. While the [SAP Business Application Studio](https://help.sap.com/products/SAP%20Business%20Application%20Studio/9d1db9835307451daa8c930fbd9ab264/84be8d91b3804ab5b0581551d99ed24c.html) provides excellent support to develop CAP Java applications, you can also develop locally with your tool of choice, for example Eclipse or Visual Studio Code.
+The CAP Java SDK enables developing CAP applications in Java. While the [SAP Business Application Studio](https://help.sap.com/products/SAP%20Business%20Application%20Studio/9d1db9835307451daa8c930fbd9ab264/84be8d91b3804ab5b0581551d99ed24c.html) provides excellent support to develop CAP Java applications, you can also develop locally with Visual Studio Code.
The CAP Java SDK supports lean application design by its modular architecture, that means you pick the required features and add them to your application dependencies on demand.
@@ -196,32 +196,10 @@ mvn spring-boot:run
To test whether the started application is up and running, open [http://localhost:8080](http://localhost:8080) in your browser.
:::
-## Using Eclipse { #eclipse}
-
-
-### Install Eclipse
-
-Install the [Eclipse IDE for Enterprise Java developers](https://www.eclipse.org/downloads/packages/release/2020-03/r/eclipse-ide-enterprise-java-developers-includes-incubating-components).
-
-
### Add *Spring Tools 4*
Install the [*Spring Tools 4*](https://spring.io/tools) Eclipse plugin, that makes development of Spring applications more convenient. From the Eclipse Marketplace (*Help > Eclipse Marketplace...*), search and install *Spring Tools 4*.
-### Add the *SAP Cloud Business Application Tools for Eclipse*
-
-Install the Eclipse plugin called _SAP Cloud Business Application Tools for Eclipse_ that supports convenient editing of CDS files.
-
-1. In Eclipse open *Help > Install New Software...*.
-
-1. From [SAP Development Tools > Getting Started with the Eclipse Tools for SAP Cloud Application Programming Model](https://tools.hana.ondemand.com/#cloud-eclipsecds), add the URL of the tools update site for your Eclipse release.
-
-1. Select *SAP Cloud Business Application Tools* > *SAP Cloud Business Application Tools for Eclipse*.
-
-1. Click *Next* and *Finish*, accept the license agreement and warning about unsigned content, restart Eclipse.
-
-