o add decorator delegation

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163136 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-09-22 02:29:26 +00:00
parent 90c3f69e1c
commit a793d673b4
1 changed files with 14 additions and 0 deletions

View File

@ -533,5 +533,19 @@ public class MavenProject
{
this.wagonLocalRepository = repository;
}
// ----------------------------------------------------------------------
// Decorators
// ----------------------------------------------------------------------
public List getPreGoals()
{
return model.getPreGoals();
}
public List getPostGoals()
{
return model.getPostGoals();
}
}