ADD JAR

Description

ADD JAR adds a JAR file to the list of resources. The added JAR file can be listed using LIST JAR.

Syntax

  1. ADD { JAR | JARS } file_name [ ... ]

Parameters

  • file_name

    The name of the JAR file to be added. It could be either on a local file system or a distributed file system or an Ivy URI. Apache Ivy is a popular dependency manager focusing on flexibility and simplicity. Now we support two parameter in URI query string:

    • transitive: whether to download dependent jars related to your ivy URL. The parameter name is case-sensitive, and the parameter value is case-insensitive. If multiple transitive parameters are specified, the last one wins.
    • exclude: exclusion list during downloading Ivy URI jar and dependent jars.

    User can write Ivy URI such as:

    1. ivy://group:module:version
    2. ivy://group:module:version?transitive=[true|false]
    3. ivy://group:module:version?transitive=[true|false]&exclude=group:module,group:module

Examples

  1. ADD JAR /tmp/test.jar;
  2. ADD JAR "/path/to/some.jar";
  3. ADD JAR '/some/other.jar';
  4. ADD JAR "/path with space/abc.jar";
  5. ADD JARS "/path with space/def.jar" '/path with space/ghi.jar';
  6. ADD JAR "ivy://group:module:version";
  7. ADD JAR "ivy://group:module:version?transitive=false"
  8. ADD JAR "ivy://group:module:version?transitive=true"
  9. ADD JAR "ivy://group:module:version?exclude=group:module&transitive=true"