Skip to content

Commit

Permalink
fix : running modulepath commandline
Browse files Browse the repository at this point in the history
  • Loading branch information
isabiq committed May 10, 2019
1 parent 3296fc8 commit 514fd1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/codehaus/mojo/exec/ExecMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,10 @@ else if ( args[i].contains( CLASSPATH_TOKEN ) )
{
commandArguments.add( args[i].replace( CLASSPATH_TOKEN, computeClasspathString( null ) ) );
}
else if ( args[i].contains( MODULEPATH_TOKEN ) )
{
commandArguments.add( args[i].replace( MODULEPATH_TOKEN, computeClasspathString( null ) ) );
}
else
{
commandArguments.add( args[i] );
Expand Down

0 comments on commit 514fd1e

Please sign in to comment.