I have a maven project that requires a property to be set at the command line(-Dmy.property=val). What I need to do is to convert that string into all caps since that proper
The groovy plugin could be used. The following configures it to run at the beginning of the Maven build process:
org.codehaus.groovy.maven
gmaven-plugin
1.0
initialize
execute
import org.apache.commons.lang.StringUtils
project.properties["my.property"] = StringUtils.upperCase(project.properties["my.property"])