Some parameters may be specified as nested elements.
The class path might be alternatively specified using the nested <classpath> element. It is recommended to use the same class path as with your compile target, to ensure that all project types are accessible.
Since 1.9.3
Example 4.9. Class path declaration using nested classpath element
<jalopy ...> <classpath> <pathelement name="${classpath}" /> </classpath> ... </jalopy>
Used to specify a user environment variable that shall be available during a run. If a variable with the given name already exists, its value will be overridden during the run and restored afterwards.
Since 1.0
Table 4.2. Nested variable parameter
| Attribute | Type | Description | Required |
|---|---|---|---|
| name | String | Specifies the name of the variable. | Yes |
| value | String | Specifies the value that should be assigned to the variable. | Yes |
Example 4.10. Variable declaration
<jalopy ...> <variable name="author" value="John Doo" /> ... </jalopy>