I am trying to upgrade an application from grails 2.2.4 to 2.3.7 and I have problems with iText dependencies.
running grails resource dependencies shows me that I have 2 jars for iText
+
| \
| \
| \
| \
| \
+
| \
| \
| \
| \
| \
| \
I tried to remove itext 2.0.8 by adding to BuildConfig
grails.project.dependency.resolution = {
inherits("global") {
excludes "itext"
}
however, when I update the dependencies, Grails adds itext 2.0.8 anyway.
Can anyone give me a hint for a solution?
Regards
source
share