private PipelinePluginManifestCache createManifestCache(ManagedProject mp) {
Folder projectCacheDir = ProjectFolders.getCacheFolder(mp.getLocation());
String manifestCacheDirName = PipelinePluginManifestCache.CACHE_ID;
Folder manifestCacheDir = projectCacheDir.subFolder(manifestCacheDirName);
PipelinePluginManifestCacheFactory factory = PipelinePluginManifestCacheFactory
.newFileBasedCacheFactory(manifestCacheDir);
return factory.createCache();
}