Skip to content

MANIFEST.MF⚓︎

Overview⚓︎

The MANIFEST.MF file is a standard file used in Java projects to define metadata about the project, such as version information, dependencies, and other details. It is used to specify the configuration and requirements of the project.

Table of Contents⚓︎

  1. Prerequisites
  2. Usage
  3. Useful details

Prerequisites⚓︎

There are no specific dependencies or prerequisites required to use the MANIFEST.MF file.

Usage⚓︎

The MANIFEST.MF file is automatically created and updated by the build tools such as Maven or Gradle. It does not need to be instantiated or utilized directly in the project code. However, it is important to ensure that the file contains accurate information about the project, such as the main class, version number, and dependencies.

Useful details⚓︎

  • Manifest-Version: Specifies the version of the manifest file format.
  • Class-Path: Specifies the location of any dependent JAR files.

CODE⚓︎

Manifest-Version: 1.0 Class-Path:

CODE⚓︎