Description
Allow to suppress properties from the POM's properties section by its name or value.
For simplicity's sake we add the patterns for keys and values to exclude to a profile section in the settings.xml.
<profile> <id>de.smartics.projectdoc</id> <properties> <ignore-property-keys> <item>.*password.*</item> </ignore-property-keys> <ignore-property-values> <item>\w:.*</item> </ignore-property-values> </properties> </profile>
Future versions should allow to configure these properties in an admin view.