* your gradle build and need to specify, for example, an init script.
*
* @param listener the listener that modifies the command line arguments.
*/
public void addCommandLineArgumentAlteringListener(CommandLineArgumentAlteringListenerVersion1 listener) {
CommandLineArgumentAlteringListenerWrapper wrapper = new CommandLineArgumentAlteringListenerWrapper(listener);
//we have to store our wrapper so you can call remove the listener using your passed-in object
commandLineListenerMap.put(listener, wrapper);
gradlePluginLord.addCommandLineArgumentAlteringListener(wrapper);