o demonstration that boolean properties don't appear to be passed through correctly.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@368828 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-01-13 19:23:41 +00:00
parent 18a02e4097
commit ed5359a014
5 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1 @@
target/classes/test.properties

View File

@ -0,0 +1 @@
test

View File

@ -0,0 +1,27 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0090</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<filter.resources>true</filter.resources>
<name>jason</name>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>${filter.resources}</filtering>
</resource>
</resources>
</build>
</project>

View File

@ -0,0 +1,2 @@
# When we want to test the filtering of envars
name=${name}

View File

@ -0,0 +1,35 @@
package org.apache.maven.it0091;
import junit.framework.TestCase;
import java.util.Properties;
import java.io.File;
import java.io.FileInputStream;
public class PomInterpolationTest
extends TestCase
{
private String basedir;
protected void setUp()
throws Exception
{
basedir = System.getProperty( "basedir" );
}
public void xtestProjectBuildDirectoryAfterForMojoExecution()
throws Exception
{
Properties testProperties = new Properties();
File testPropertiesFile = new File( basedir, "target/classes/test.properties" );
assertTrue( testPropertiesFile.exists() );
testProperties.load( new FileInputStream( testPropertiesFile ) );
File projectBuildDirectory = new File( basedir, "target" );
assertEquals( testProperties.getProperty( "name" ), "jason" );
}
}