Jboss AS7 Deployment warning : does not point to a valid jar for a Class-Path reference

This is just a warning that you can in most cases safely ignore.

What it tells you is that in your struts-1.2.9.jar has in META-INF/MANIFEST.MF
in Class-Path reference to “commons-beanutils.jar” and that this file/jar cannot be referenced.
But given that you have commons-beanutils-1.7.0.jar there everything will work fine.

To get rid of the warning you can do two things:

  • rename commons-beanutils-1.7.0.jar to commons-beanutils.jar or
  • open struts-1.2.9.jar!META-INF/MANIFEST.MF and remove that Class-Path element.

But as I said this is mostly informative warning.

Leave a Comment