Anexar .jar

alguem sabe como que eu anexo pacotes .jar no web.xml da minha palicação?

pq eu to mapeando o caminho das libs do struts, mas não sei como mapear pro .jar ou como extrair de dentro do .jar

  <jsp-config>
         <taglib>
             <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
             <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
         </taglib>
         <taglib>
             <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
             <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
         </taglib>
         <taglib>
             <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
             <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
         </taglib>
         <taglib>
             <taglib-uri>/WEB-INF/struts-nested.tld</taglib-uri>
             <taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
         </taglib>
         <taglib>
             <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
             <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
         </taglib>
         </jsp-config>

Não é preciso registrar os JARS no web.xml, basta colocá-los na pasta /WEB-INF/lib (ou na pasta lib do teu servlet container ou AS) e pronto!