How important is to avoid name collisions between libraries belonging to different domains?
Posted
by
Sergio
on Programmers
See other posts from Programmers
or by Sergio
Published on 2013-10-19T14:03:59Z
Indexed on
2013/10/19
16:07 UTC
Read the original article
Hit count: 241
I have written a small open source Java library for facilitating conversions between different types of objects (in the style of Google's gson, but quite more general).
It seems to me that a nice natural name for my library is JConverter, after browsing in the web to see if another library with the same name already exists, I found a library with the same name for Joomla.
My concrete question is:
How important is to avoid naming collisions when creating an open source library if an existing library with the chosen name already exists in a complete different domain ? (in my concrete case, these are libraries even implemented for different languages).
© Programmers or respective owner