Full name:
org.kuali.maven.plugins:exec-maven-plugin:1.1:exec
Description:
Attributes:
Name | Type | Since | Description |
---|---|---|---|
executable | String | 1.0 | The executable. Can be a full path or a the name executable. In the
latter case, the executable must be in the PATH for the execution
to work. |
Name | Type | Since | Description |
---|---|---|---|
arguments | List | 1.0 | Can be of type <argument> or
<classpath> Can be overriden using "exec.args"
env. variable |
classpathScope | String | 1.0 | Defines the scope of the classpath passed to the plugin. Set to
compile,test,runtime or system depending on your needs. Since
1.1.2, the default value is 'runtime' instead of 'compile'. Default value is: runtime. |
commandlineArgs | String | 1.0 | Arguments for the executed program |
environmentVariables | Map | 1.1-beta-2 | Environment variables to pass to the executed program. |
longClasspath | boolean | 1.1.2 | If set to true the classpath and the main class will be written to
a MANIFEST.MF file and wrapped into a jar. Instead of
'-classpath/-cp CLASSPATH mainClass' the exec plugin executes '-jar
maven-exec.jar'. Default value is: false. |
outputFile | File | 1.1-beta-2 | Program standard and error output will be redirected to the file
specified by this optional field. If not specified the standard
maven logging is used. |
skip | boolean | 1.0.1 | Skip the execution. Default value is: false. |
sourceRoot | File | 1.0 | This folder is added to the list of those folders containing source
to be compiled. Use this if your plugin generates source code. |
successCodes | List | 1.1.1 | Exit codes to be resolved as successful execution for non-compliant
applications (applications not returning 0 for success). |
testSourceRoot | File | 1.0 | This folder is added to the list of those folders containing source
to be compiled for testing. Use this if your plugin generates test
source code. |
workingDirectory | File | 1.0 | The current working directory. Optional. If not specified, basedir
will be used. |
skip: