From: <ble...@us...> - 2010-10-09 01:36:38
|
Revision: 3762 http://bigdata.svn.sourceforge.net/bigdata/?rev=3762&view=rev Author: blevine218 Date: 2010-10-09 01:36:31 +0000 (Sat, 09 Oct 2010) Log Message: ----------- fixed typo in setting java.net.preferIPv4Stack system property for unit tests Modified Paths: -------------- branches/maven_scaleout/bigdata-core/pom.xml Modified: branches/maven_scaleout/bigdata-core/pom.xml =================================================================== --- branches/maven_scaleout/bigdata-core/pom.xml 2010-10-08 22:21:56 UTC (rev 3761) +++ branches/maven_scaleout/bigdata-core/pom.xml 2010-10-09 01:36:31 UTC (rev 3762) @@ -143,7 +143,7 @@ <!-- These system properties are required by the unit tests. --> <systemPropertyVariables> <java.security.policy>${java.security.policy}</java.security.policy> - <java.net.preferIPv4Stack>{java.net.preferIPv4Stack}</java.net.preferIPv4Stack> + <java.net.preferIPv4Stack>${java.net.preferIPv4Stack}</java.net.preferIPv4Stack> <log4j.configuration>${log4j.configuration}</log4j.configuration> <app.home>${app.home}</app.home> <!-- This is the deployment directory, easily accessed by the DataFinder class. --> @@ -170,13 +170,9 @@ <slf4j.jar>${deploy.lib}/slf4j.jar</slf4j.jar> <nxparser.jar>${deploy.lib}/nxparser.jar</nxparser.jar> <zookeeper.jar>${deploy.lib}/zookeeper.jar</zookeeper.jar> - - - - <basedir>${deploy.dir}/testing</basedir> - - - + + <basedir>${deploy.dir}/testing</basedir> + </systemPropertyVariables> </configuration> </execution> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |