Reputation: 331
The following maven dependency was not added by me (I'm the only dev on the project):
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
<version>1.0.0.RELEASE</version>
</dependency>
What is going on here?
Upvotes: 5
Views: 1334
Reputation: 3699
Workaround per @AndreiStefan from the linked JIRA issue:
Open "Window >> Preferences" Go to "Java >> Editor Content Assist >> Advanced" You will see a 'Jar Type Search' proposal provider. Disable it in both top and bottom. This should disable it across your entire workspace.
Upvotes: 7