I'm using a maven dependency that already depends on google's gson library. I'm fine with the version that comes with it.
Which of this is a good practice?
Include google gson library my pom.xml explicitly ignoring the fact that its already included in another dependency?
Use the google gson library that comes as a part of the other maven dependency, that is, do not explicitly include it in the pom.xml?
EDIT: I want use google gson library directly also in my code.