Author: millecker
Date: Mon Feb 17 08:55:14 2014
New Revision: 1568909

URL: http://svn.apache.org/r1568909
Log:
HAMA-871: NPE when building core module due to gmaven-plugin

Modified:
    hama/trunk/CHANGES.txt
    hama/trunk/core/pom.xml

Modified: hama/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hama/trunk/CHANGES.txt?rev=1568909&r1=1568908&r2=1568909&view=diff
==============================================================================
--- hama/trunk/CHANGES.txt (original)
+++ hama/trunk/CHANGES.txt Mon Feb 17 08:55:14 2014
@@ -15,6 +15,7 @@ Release 0.7.0 (unreleased changes)
 
   BUG FIXES
 
+   HAMA-871: NPE when building core module due to gmaven-plugin (Martin 
Illecker) 
    HAMA-867: HAMA 0.7 doesn't work with HDFS 2X due to lack of libs (Skater Xu 
via edwardyoon)
    HAMA-862: Handling max tasks exception (edwardyoon)
    HAMA-860: Make aggregators start from the first superstep (Anastasis 
Andronidis)

Modified: hama/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/hama/trunk/core/pom.xml?rev=1568909&r1=1568908&r2=1568909&view=diff
==============================================================================
--- hama/trunk/core/pom.xml (original)
+++ hama/trunk/core/pom.xml Mon Feb 17 08:55:14 2014
@@ -239,7 +239,9 @@
             <goals><goal>execute</goal></goals>
             <configuration>
               <source>
-                project.properties.setProperty('hama.pipes.examples.install', 
System.getProperty("hama.pipes.examples.install"));
+                if (System.getProperty("hama.pipes.examples.install") != null) 
{
+                  
project.properties.setProperty('hama.pipes.examples.install', 
System.getProperty("hama.pipes.examples.install"));
+                }
               </source>
             </configuration>
           </execution>


Reply via email to