java - Best way to add Gradle support to IntelliJ Project -
I've seen a lot and have not found the best solution to convert the existing Intellage project to Graddle. I work in a team environment and we currently share the .ipr file because we have some build configurations that we track. We are finally getting rid of those guys in favor of Gradal, but unless the Gradal conversion is done, I can not cook things too much.
In addition, our Java source files are located in the root of source instead of src / main / java are standard.
Is there any way that I can add a project to my project which will not allow me to remove and reproduce the intelligible project and will not screw everyone when they drag a grip?
Why do not you just add:
Build.gradle and use the plugin for example:
Apply the plugin: 'ideas' // and apply a standard one plugin : 'Java' and from the command line with this fire:
gradle cleanIdea and after that:
Great Idea After that everything should work
Comments
Post a Comment