manifestClassPath
manifestClassPath refers to the Class-Path attribute in a Java JAR manifest. The manifest is located at META-INF/MANIFEST.MF and can include a line such as Class-Path: lib/foo.jar lib/bar.jar. This attribute specifies additional JAR files that should be considered part of the runtime classpath when the JAR is executed as an application.
How it works: when you run a JAR with the java -jar command, the Java launcher reads
Limitations and scope: the Class-Path attribute is used only when launching with java -jar. If the application
Alternatives and practices: for complex deployments, developers often use build tools (such as Maven or Gradle)