-
Notifications
You must be signed in to change notification settings - Fork 77
modify existing settings functionality to allow for multiple repos #14
Conversation
This is in line with #12. |
Good change, but could it be made to maintain compatibility? Retain default_repo_config and insert it into the list of repos. Would also be good to have some specs to verify - though I haven't tried due to time at the moment, my suspicion is this would break those that we have. |
Committed a change to add the default_repo_config back in, however it is not yet tested. In theory it should work ;) I created #16 as I am uncertain how to get the rspec tests running. |
…as a limitation around array concatenation
Finished in 1.01 seconds |
@brettporter I am re-submitting this as a merge request. |
I realize after submitting it this is duplicate to #19 , except I made the repos global instead of inside the puppet-maven profile. I can see the benefit of both actually, although supporting both might be confusing. ... Update... Now I realize why you put the repositories into the profile... I forgot Maven doesn't support global repositories, so I've closed my PR. |
@brettporter Is there anything else you need from me for this? |
just more hours in the day... |
modify existing settings functionality to allow for multiple repos
This looks great - thanks for the patch, and for your patience! |
This change is not backwards compatible in the sense that I remove the default_repo_config attribute from the settings.pp file in favour of allowing any number of repos to be configured. If this is an issue, I would be happy to re-add this variable so that both can co-exist. But I thought this approach was cleaner.
Open to suggestions.