java.module.annotation
Annotation Type JarLibraryPath


@Target(value={SUPERPACKAGE,TYPE})
@Retention(value=RUNTIME)
public @interface JarLibraryPath

Indicates the path relative to the root of the module archive for searching jar files. This metadata annotation is applied to the development module, i.e. the superpackage construct.

For example,

    @JarLibraryPath("WEB-INF/lib")
    superpackage com.wombat.webapp {
       ...
    }
 

Since:
1.7.0
Author:
Stanley M. Ho

Required Element Summary
 String value
          The path relative to the root of the module archive for searching jar files.
 

Element Detail

value

public abstract String value
The path relative to the root of the module archive for searching jar files.