I have a grails application on my local machine and I have created a repository in XP-DEV. I have the folders .groovy and .settings in project root. Do I need to commit those files into version control? I am asking this question because I have no idea what the use is of these folders.
|
|
||||
|
|
|
My opinion is, no do not commit these directories. If another person checks out your project their own personal copies of these directories will be generated automatically. |
|||||||||
|
|
I disagree with the answer from @FGreg. The .settings folder contains project specific settings. This includes custom compiler settings, errors and warning levels, formatting preferences, save actions, etc. In general, it's a good idea to share these preferences across developers. If these settings are not shared, then you could get inconsistencies in formatting and compiler problems. In general, if you want a consistent development environment for any team, you will need to include the settings folders into version control. The .groovy folder inside of Groovy-Eclipse is used for project-specific DSL information and inferencing suggestions. In general, if you have project-specific inferencing information, you will want to share this with others on the same project. In our team, we clearly define all the settings that will be used by each project, commit the .settings folders and we are assured that every developer sees the same settings. |
|||
|
|
|
In my humble opinion, committing the IDE project file is bad idea. If you have specific configuration to do you should configure your maven, gradle, ant or whatever to generate the correct configuration. There is a list of problems I have seen
If you choose to commit this files please remember that you will have to do some manual extra work to ensure that the correct files are committed. But if you configure correctly your build tool you'll only do the work once. ;) |
|||
|
|