Full name:
com.kerbaya:run-maven-plugin:1.1.0:run
Description:
Attributes:
Name | Type | Since | Description |
---|---|---|---|
<artifact> |
String |
- |
The artifact coordinates in the format
Example: User property is: artifact . |
Name | Type | Since | Description |
---|---|---|---|
<arguments> |
List |
- |
String arguments to pass to the method. May also be specified
using Model example:
Command-line example:
|
<className> |
String |
- |
The full class name of the main class. If omitted,
org.myorg.myapp.Main User property is: className . |
<options> |
List |
- |
String options to pass to the forked Java runtime environment.
May also be specified using Model example:
Command-line example:
|
String arguments to pass to the method. May also be specified
using arg.#
parameters
Model example:
<arguments>
<argument>arg0_value</argument>
<argument>arg1_value</argument>
</arguments>
Command-line example:
-Darg.0=arg0_value -Darg.1=arg1_value
java.util.List
No
The artifact coordinates in the format
<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
Example: org.myorg:myapp:1.0.0
java.lang.String
Yes
artifact
The full class name of the main class. If omitted,
artifact
will be executed as a runnable JAR.
org.myorg.myapp.Main
java.lang.String
No
className
String options to pass to the forked Java runtime environment.
May also be specified using opt.#
parameters
Model example:
<options>
<option>-Xms1g</option>
<option>-DpropName=propValue</option>
</options>
Command-line example:
-Dopt.0=-Xms1g -Dopt.1=-DpropName=propValue
java.util.List
No