Is there any good way / plugin to remove system properties in maven pom.xml ?
I need this ability because i am doing code generation based on System properties and this causes issue if i run mvn clean install in the parent module where it has multi sub module as system properties will remain the last value if i dont clear it.
Clearly i can do this by create my own plugin / main class util to do this . bust just want to find out if there are already existing solution out there.
Thanks