Project API
Hi, I'm trying to make a tool that automatically configures a new intellij project but I am new to plugin development and I don't know where to start. Is there an API which can be used to create projects and modules and edit the dependencies, configure compilers, web containers and other settings? Is it centralized? Can you give me some pointers?
请先登录再写评论。
Set project JDK:
Project JDK contains information about compiler.
Use[/url] ModuleRootManager to add libraries.
Thanks, ProjectRootManager and ModuleRootManager are exactly what I was looking for.