Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: duplicate libraries issue

...

Code Block
  <jsp-config>
    <taglib>
        <taglib-uri>cms-taglib</taglib-uri>
        <taglib-location>cms-taglib.tld</taglib-location>
    </taglib>
    <taglib>
        <taglib-uri>cms-util-taglib</taglib-uri>
        <taglib-location>cms-util-taglib.tld</taglib-location>
    </taglib>
  </jsp-config>

Project contains duplicate entry

Sometimes the same jar is references twice (by maven and EAR dependencies). To make the project compile again you must remove the ear dependency:

  • right click project -> Java EE -> Update EAR libraries

Webapp project don't work

...