Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Windows XP
Description
AssemblyInterpolatorTest.testShouldResolveEnvarHOMEValueInDependencySetOutputDirectory fails with
expected:<${env.PATH}> but was:<REAL PATH DELETED>
This is because AssemblyInterpolatorTest is using
import org.codehaus.plexus.util.cli.CommandLineUtils;
instead of
import org.apache.maven.plugin.assembly.utils.CommandLineUtils;
and the call to get the envars should be
Properties envars = CommandLineUtils.getSystemEnvVars( false );