Full name:
org.kuali.maven.plugins:properties-maven-plugin:1.5.3-SNAPSHOT:write-project-properties
Description:
Attributes:
| Name | Type | Since | Description |
|---|---|---|---|
| outputFile | File | - | The file that properties will be written to Default value is: ${project.build.directory}/properties/project.properties. |
| outputStyle | OutputStyle | - | Either NORMAL or ENVIRONMENT_VARIABLE.
When set to ENVIRONMENT_VARIABLE the keys in the
properties file will all be upper case with periods replaced by
underscores. Default value is: NORMAL. |
| Name | Type | Since | Description |
|---|---|---|---|
| comment | String | - | Anything provided here is added as a comment at the top of the
properties file. |
| encoding | String | - | The encoding to use when storing the properties Default value is: ${project.build.sourceEncoding}. |
| exclude | String | - | CSV list of properties to exclude. A single wildcard character
* is supported. |
| excludes | List | - | List of properties to exclude. A single wildcard character
* is supported. |
| include | String | - | CSV list of properties to include. A single wildcard character
* is supported. |
| includeEnvironmentVariables | boolean | - | If true, the plugin will include environment variables when writing
the properties file. Environment variables are prefixed with "env".
Environment variables override project properties. Default value is: false. |
| includeStandardMavenProperties | boolean | - | If true, these Maven properties are added to the properties file:
project.groupId project.artifactId project.version project.basedir project.build.directory Default value is: false. |
| includeSystemProperties | boolean | - | If true, the plugin will include system properties when writing the
properties file. System properties override both environment
variables and project properties. Default value is: false. |
| includes | List | - | List of properties to include. A single wildcard character
* is supported. |
| prefix | String | - | If supplied property keys are prefixed with this value before being
stored. |
| resolvePlaceholders | boolean | - | If true placeholders are resolved before writing properties to the
file Default value is: false. |
includeStandardMavenProperties:
project.groupId project.artifactId project.version project.basedir project.build.directory