Intellij plugin make package and main class

Answered
 

I have made a Project Wizard in the intellij plugin im making, now what I want to do at the end of that is make it generate the src/main/java, or src/main/kotlin, depending on the data provided in the project wizard ive made. I also want it to make this as a gradle project. If anyone knows how to do this that would be much appreciated. Thankyou

0
5 comments

Do you really need a custom UI? Otherwise adding org.jetbrains.plugins.gradle.frameworkSupport.GradleFrameworkSupportProvider extension point will list your plugin's abilities in "Additional Libraries and Frameworks" and you can benefit from "automatic" Gradle support.

0

Yann Cebron

Yes, a custom UI is required

0

You could override org.jetbrains.plugins.gradle.frameworkSupport.GradleFrameworkSupportProvider#createComponent so it will show custom UI below list of frameworks.

0

Yann Cebron I really need to be able to have my plugin appear somewhere on this list

0

Please sign in to leave a comment.