jira-importer commented on issue #218: URL: https://github.com/apache/maven-jar-plugin/issues/218#issuecomment-2956681025
**[Martin Desruisseaux](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=desruisseaux)** commented Maybe related to this issue: the manifest classpath generated by Maven ignores the "real" JAR name as specified in `<finalName>>`. For example the Geotools project tried the following configuration: ```xml <build> <finalName>gt-${artifactId}-${version}</finalName> ``` but the manifest classpath generated by Maven contains only `${artifactId}-${version}.jar` entries, which are non-existent JARs. **Note:** this problem happen only when the JAR dependencis come from the repository. The manifest classpath is correct if all dependencies were compiled in the same "`mvn install`" cycle. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
