mirror of https://github.com/apache/maven.git
undo previous change to test. It seems this was working on 2 other windows boxes, so I must have something funky.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@379412 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
353f7aedfc
commit
8d2478dff6
|
@ -11,12 +11,6 @@
|
|||
<type>jar</type>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-utils</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<resources>
|
||||
|
|
|
@ -6,10 +6,6 @@ import java.util.Properties;
|
|||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
|
||||
import org.codehaus.plexus.util.FileUtils;
|
||||
import org.codehaus.plexus.util.StringInputStream;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
|
||||
public class PomInterpolationTest
|
||||
extends TestCase
|
||||
{
|
||||
|
@ -30,12 +26,7 @@ public class PomInterpolationTest
|
|||
|
||||
assertTrue( testPropertiesFile.exists() );
|
||||
|
||||
String content = FileUtils.fileRead( testPropertiesFile );
|
||||
|
||||
// Properties files need \\ escaped
|
||||
content = StringUtils.replace( content, "\\", "\\\\" );
|
||||
|
||||
testProperties.load( new StringInputStream( content ) );
|
||||
testProperties.load( new FileInputStream( testPropertiesFile ) );
|
||||
|
||||
File projectBuildDirectory = new File( basedir, "target" );
|
||||
|
||||
|
|
Loading…
Reference in New Issue