Support to inherit project level plugin config for own config file

When reading the project level plugin configuration that is stored in
an own configuration file it is now possible to get missing
configuration values inherited from the parent projects.

Change-Id: Idff2c02adf55524b56a43d6dd23ec6ebc468fedb
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-10-30 14:50:01 +01:00
parent 705f284863
commit 762da38661
6 changed files with 144 additions and 4 deletions

View File

@@ -225,7 +225,7 @@ public class ProjectState {
return configs.get(fileName);
}
ProjectLevelConfig cfg = new ProjectLevelConfig(fileName);
ProjectLevelConfig cfg = new ProjectLevelConfig(fileName, this);
try {
Repository git = gitMgr.openRepository(getProject().getNameKey());
try {