mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
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 List getPluginGroups()
|
||||
|
||||
public String getPomFile()
|
||||
{
|
||||
return request.getPom().getAbsolutePath();
|
||||
return request.getPom() == null ? null : request.getPom().getAbsolutePath();
|
||||
}
|
||||
|
||||
public List getProfiles()
|
||||
|
Loading…
x
Reference in New Issue
Block a user