use of org.eclipse.tycho.versions.engine.ProjectMetadataReader in project tycho by eclipse.
the class VersionsEngineTest method newEngine.
private VersionsEngine newEngine(File basedir) throws Exception {
VersionsEngine engine = lookup(VersionsEngine.class);
ProjectMetadataReader reader = lookup(ProjectMetadataReader.class);
reader.addBasedir(basedir);
engine.setProjects(reader.getProjects());
return engine;
}
Aggregations