Grails - How to exclude some jars for grails-app(war) package -


some unwanted wars being included while maven's grails-app packaging. need itext-2.0.8, added in pom , added fine, below 3 jars getting added, , 1 duplicate itext-2.1.5, should not come war file.

i tried exclude tag in maven corresponding plugin(export).

        <exclusions>     <exclusion>         <groupid>com.lowagie</groupid>         <artifactid>itext</artifactid>     </exclusion> </exclusions> 

i tried adding excludes in buildconfig.groovy.

excludes "com.lowagie:itext:2.1.5" excludes "com.lowagie:itextasian:2.1.5" excludes "com.lowagie:itext-rtf:2.1.5" 


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

qt - Errors in generated MOC files for QT5 from cmake -