mirror of https://github.com/apache/maven.git
Store the pom File object in the execution request instead of its path, fix possible null values
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@588058 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3571f9e2ac
commit
7ac246fd96
|
@ -108,7 +108,7 @@ public class ExecutionBuildContext
|
||||||
|
|
||||||
public String getPomFile()
|
public String getPomFile()
|
||||||
{
|
{
|
||||||
return request.getPom().getAbsolutePath();
|
return request.getPom() == null ? null : request.getPom().getAbsolutePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List getProfiles()
|
public List getProfiles()
|
||||||
|
|
Loading…
Reference in New Issue