Simon
Simon

Reputation: 331

Why is maven dependency being added automatically to pom when using Eclipse (STS 3.5.1)?

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

Answers (1)

JJ Zabkar
JJ Zabkar

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

Related Questions