Index: src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java
===================================================================
--- src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java	(revision 1056361)
+++ src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java	(working copy)
@@ -447,7 +447,10 @@
             }
             if ( !StringUtils.isEmpty( effectiveCompilerArgument ) )
             {
-                cplrArgsCopy.put( effectiveCompilerArgument, null );
+                for (String arg : StringUtils.split( effectiveCompilerArgument ))
+                {
+                    cplrArgsCopy.put( arg, null );
+                }
             }
             compilerConfiguration.setCustomCompilerArguments( cplrArgsCopy );
         }

