Name
jmod - create JMOD files and list the content of existing JMOD files
Synopsis
jmod
(create|extract|list|describe|hash)
[options] jmod-file
Includes the following:
Main operation modes
- create
- Creates a new JMOD archive file.
- extract
- Extracts all the files from the JMOD archive file.
- list
- Prints the names of all the entries.
- describe
- Prints the module details.
- hash
- Determines leaf modules and records the hashes of the dependencies that directly and indirectly require them.
Options
- options
- See Options for jmod.
Required
- jmod-file
- Specifies the name of the JMOD file to create or from which to retrieve information.
Description
Note: For most development tasks, including
deploying modules on the module path or publishing them to a Maven
repository, continue to package modules in modular JAR files. The
jmod tool is intended for modules that have native
libraries or other configuration files or for modules that you intend to
link, with the jlink tool, to a runtime
image.
The JMOD file format lets you aggregate files other than
.class files, metadata, and resources. This format is
transportable but not executable, which means that you can use it during
compile time or link time but not at run time.
Many jmod options involve specifying a path whose
contents are copied into the resulting JMOD files. These options copy
all the contents of the specified path, including subdirectories and
their contents, but exclude files whose names match the pattern
specified by the --exclude option.
With the --hash-modules option or the
jmod hash command, you can, in each module's descriptor,
record hashes of the content of the modules that are allowed to depend
upon it, thus "tying" together these modules. This enables a package to
be exported to one or more specifically-named modules and to no others
through qualified exports. The runtime verifies if the recorded hash of
a module matches the one resolved at run time; if not, the runtime
returns an error.
Options for jmod
- --class-pathpath
- Specifies the location of application JAR files or a directory containing classes to copy into the resulting JMOD file.
- --cmdspath
- Specifies the location of native commands to copy into the resulting JMOD file.
- --compresscompress
- 
Specifies the compression to use in creating the JMOD file. The accepted
values are zip-[0-9], wherezip-0provides no compression, andzip-9provides the best compression. Default iszip-6.
- --configpath
- Specifies the location of user-editable configuration files to copy into the resulting JMOD file.
- --dateTIMESTAMP
- The timestamp in ISO-8601 extended offset date-time with optional time-zone format, to use for the timestamp of the entries, e.g. "2022-02-12T12:30:00-05:00".
- --dirpath
- 
Specifies the location where jmodputs extracted files from the specified JMOD archive.
- --dry-run
- Performs a dry run of hash mode. It identifies leaf modules and their required modules without recording any hash values.
- --excludepattern-list
- 
Excludes files matching the supplied comma-separated pattern list, each element using one the following forms: - glob-pattern 
- glob:glob-pattern
- regex:regex-pattern
 See the FileSystem.getPathMatchermethod for the syntax of glob-pattern. See thePatternclass for the syntax of regex-pattern, which represents a regular expression.
- --hash-modulesregex-pattern
- 
Determines the leaf modules and records the hashes of the dependencies
directly and indirectly requiring them, based on the module graph of the
modules matching the given regex-pattern. The hashes are
recorded in the JMOD archive file being created, or a JMOD archive or
modular JAR on the module path specified by the jmod hashcommand.
- --header-filespath
- Specifies the location of header files to copy into the resulting JMOD file.
- --helpor- -h
- Prints a usage message.
- --help-extra
- Prints help for extra options.
- --legal-noticespath
- Specifies the location of legal notices to copy into the resulting JMOD file.
- --libspath
- Specifies location of native libraries to copy into the resulting JMOD file.
- --main-classclass-name
- Specifies main class to record in the module-info.class file.
- --man-pagespath
- Specifies the location of man pages to copy into the resulting JMOD file.
- --module-versionmodule-version
- Specifies the module version to record in the module-info.class file.
- --module-pathpath or- -ppath
- 
Specifies the module path. This option is required if you also specify
--hash-modules.
- --target-platformplatform
- Specifies the target platform.
- --version
- 
Prints version information of the jmodtool.
- @filename
- 
Reads options from the specified file. An options file is a text file that contains the options and values that you would ordinarily enter in a command prompt. Options may appear on one line or on several lines. You may not specify environment variables for path names. You may comment out lines by prefixinga hash symbol ( #) to the beginning of the line.The following is an example of an options file for the jmodcommand:#Wed Dec 07 00:40:19 EST 2016 create --class-path mods/com.greetings --module-path mlib --cmds commands --config configfiles --header-files src/h --libs lib --main-class com.greetings.Main --man-pages man --module-version 1.0 --os-arch "x86_x64" --os-name "macOS" --os-version "10.10.5" greetingsmod
Extra Options for jmod
In addition to the options described in Options for jmod, the following are extra options that can be used with the command.
- --do-not-resolve-by-default
- Exclude from the default root set of modules
- --warn-if-resolved
- Hint for a tool to issue a warning if the module is resolved. One of deprecated, deprecated-for-removal, or incubating.
jmod Create Example
The following is an example of creating a JMOD file:
jmod create --class-path mods/com.greetings --cmds commands
  --config configfiles --header-files src/h --libs lib
  --main-class com.greetings.Main --man-pages man --module-version 1.0
  --os-arch "x86_x64" --os-name "macOS"
  --os-version "10.10.5" greetingsmodCreate a JMOD file specifying the date for the entries as
2022 March 15 00:00:00:
jmod create --class-path build/foo/classes --date 2022-03-15T00:00:00Z
   jmods/foo1.jmodjmod Hash Example
The following example demonstrates what happens when you try to link
a leaf module (in this example, ma) with a required module
(mb), and the hash value recorded in the required module
doesn't match that of the leaf module.
- Create and compile the following - .javafiles:- jmodhashex/src/ma/module-info.java- module ma { requires mb; }
- jmodhashex/src/mb/module-info.java- module mb { }
- jmodhashex2/src/ma/module-info.java- module ma { requires mb; }
- jmodhashex2/src/mb/module-info.java- module mb { }
 
- Create a JMOD archive for each module. Create the directories - jmodhashex/jmodsand- jmodhashex2/jmods, and then run the following commands from the- jmodhashexdirectory, then from the- jmodhashex2directory:- jmod create --class-path mods/ma jmods/ma.jmod
- jmod create --class-path mods/mb jmods/mb.jmod
 
- Optionally preview the - jmod hashcommand. Run the following command from the- jmodhashexdirectory:- jmod hash --dry-run -module-path jmods --hash-modules .*- The command prints the following: - Dry run: mb hashes ma SHA-256 07667d5032004b37b42ec2bb81b46df380cf29e66962a16481ace2e71e74073a- This indicates that the - jmod hashcommand (without the- --dry-runoption) will record the hash value of the leaf module- main the module- mb.
- Record hash values in the JMOD archive files contained in the - jmodhashexdirectory. Run the following command from the- jmodhashexdirectory:- jmod hash --module-path jmods --hash-modules .*- The command prints the following: - Hashes are recorded in module mb
- Print information about each JMOD archive contained in the - jmodhashexdirectory. Run the highlighted commands from the- jmodhashexdirectory:- jmod describe jmods/ma.jmod ma requires mandated java.base requires mb jmod describe jmods/mb.jmod mb requires mandated java.base hashes ma SHA-256 07667d5032004b37b42ec2bb81b46df380cf29e66962a16481ace2e71e74073a
- Attempt to create a runtime image that contains the module - mafrom the directory- jmodhashex2but the module- mbfrom the directory- jmodhashex. Run the following command from the- jmodhashex2directory:- Linux and macOS: - jlink --module-path $JAVA_HOME/jmods:jmods/ma.jmod:../jmodhashex/jmods/mb.jmod --add-modules ma --output ma-app
- Windows: - jlink --module-path %JAVA_HOME%/jmods;jmods/ma.jmod;../jmodhashex/jmods/mb.jmod --add-modules ma --output ma-app
 - The command prints an error message similar to the following: - Error: Hash of ma (a2d77889b0cb067df02a3abc39b01ac1151966157a68dc4241562c60499150d2) differs to expected hash (07667d5032004b37b42ec2bb81b46df380cf29e66962a16481ace2e71e74073a) recorded in mb