How to add plugin to IDEA installation recommendations

Answered

Hi community,

IDEA can suggest uninstalled plugins based on project dependencies. It shows a balloon notification with the following text "Recommended plugin available for dependencies '...'".
Is there any way to declare dependencies on our framework so that the IDEA will also offer my plugin?

The plugin is for the conversational framework that is developed by our company.

Greetings
Vitaly

0
1 comment

Hi Vitaly,

Please use com.intellij.dependencySupport extension point, e.g.:
<dependencySupport kind="java" coordinate="org.springframework:spring-webmvc" displayName="Spring MVC"/>

1

Please sign in to leave a comment.