Setting jdk while project creation
I want to be able to select a jdk during project creation like how it asks for java project creation. I tried using DefaultModuleEditorsProvider for
<moduleConfigurationEditorProvider implementation="com.intellij.openapi.roots.ui.configuration.DefaultModuleEditorsProvider"/>
but that didn't seem to work. Am I missing out something?
Thanks
Attachment(s):
java jdk selection.png
custom jdk selection.png
Please sign in to leave a comment.
You can extend com.intellij.ide.util.projectWizard.ModuleBuilder and override following method like this:
This adds SDK selection to Your module configuration steps.
See also com.intellij.openapi.module.ModuleType class.
Thanks Marcin, it works