java - How can I tell Maven Spring Boot to ignore prehistoric MANIFEST.MF's Class-Path entries? - Stack Overflow

My Maven Spring Boot project uses libraries that happen to have "Class-Path:" entries in thei

My Maven Spring Boot project uses libraries that happen to have "Class-Path:" entries in their MANIFEST.MF. This seems to be a rather prehistoric (back from the 90s?) way of managing dependencies; it doesn't manage auto-downloads like maven, it doesn't consider versioning, publishing, or app assembling. Nowadays Maven manages all this behind the scenes in much better and simpler way for us.

However, when it comes to running the application using mvn spring-boot:run it shows the following warning:

WARN o.a.tomcat.util.scan.StandardJarScanner  : Failed to scan [file: /home/service/.m2/repository/g/a/1.0/b.jar] from classloader hierarchy
java.io.IOException: java.lang.reflect.InvocationTargetException
        at .apache.tomcat.utilpat.Jre9Compat.jarFileNewInstance(Jre9Compat.java:209) ~[tomcat-embed-core-9.0.45.jar:9.0.45]
        at .apache.tomcat.util.scan.JarFileUrlJar.<init>(JarFileUrlJar.java:65) ~[tomcat-embed-core-9.0.45.jar:9.0.45]
        …
        at com.cat.web. SpringWebAppStarter.main(SpringWebAppStarter.java:35) ~[classes/:na]
Caused by: java.lang.reflect.InvocationTargetException: null
        at java.base/jdk.internal.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) ~[na:na]
        ... 46 common frames omitted
Caused by: java.nio.file.NoSuchFileException: /home/service/.m2/repository/g/a/1.0/b.jar

In this case the library g:a.jar (group and name simplified) has a META-INF/MANIFEST.MF file that includes:

Class-Path: b.jar

That is an optional library that is not really used by my app.

How can I tell Maven or Spring Boot to manage the dependencies by themselves only and to fully ignore the Class-Path: entries in the libraries' MANIFESTs?

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743831865a4514648.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信