admin管理员组文章数量:1346968
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?
版权声明:本文标题:java - How can I tell Maven Spring Boot to ignore prehistoric MANIFEST.MF's Class-Path entries? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743831865a2546669.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论