File tree 1 file changed +8
-8
lines changed
plexus-compiler-api/src/main/java/org/codehaus/plexus/compiler
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -825,38 +825,38 @@ public String describe( String id )
825
825
}
826
826
if ( !StringUtils .isEmpty ( getReleaseVersion () ) )
827
827
{
828
- params .add ( "release " + getReleaseVersion () );
828
+ params .add ( "-- release " + getReleaseVersion () );
829
829
}
830
830
else if ( !StringUtils .isEmpty ( getTargetVersion () ) )
831
831
{
832
- params .add ( "target " + getTargetVersion () );
832
+ params .add ( "- target " + getTargetVersion () );
833
833
}
834
834
if ( getModulepathEntries () != null && !getModulepathEntries ().isEmpty () )
835
835
{
836
- params .add ( "module-path" );
836
+ params .add ( "-- module-path ... " );
837
837
}
838
838
if ( isDebug () )
839
839
{
840
840
if ( StringUtils .isNotEmpty ( getDebugLevel () ) )
841
841
{
842
- params .add ( "debug :" + getDebugLevel () );
842
+ params .add ( "-g :" + getDebugLevel () );
843
843
}
844
844
else
845
845
{
846
- params .add ( "debug " );
846
+ params .add ( "-g " );
847
847
}
848
848
}
849
849
if ( isOptimize () )
850
850
{
851
- params .add ( "optimize " );
851
+ params .add ( "-O " );
852
852
}
853
853
if ( isVerbose () )
854
854
{
855
- params .add ( "verbose" );
855
+ params .add ( "- verbose" );
856
856
}
857
857
if ( isShowDeprecation () )
858
858
{
859
- params .add ( "deprecation" );
859
+ params .add ( "- deprecation" );
860
860
}
861
861
return String .join ( " " , params );
862
862
}
You can’t perform that action at this time.
0 commit comments