blob: 1ffb9aab0d9afe66557be066bd5d80690898e2f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2021 IBM Corporation and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which accompanies this distribution,
* and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* SAP AG - consolidation of publishers for PDE formats
******************************************************************************/
package org.eclipse.pde.internal.build.site;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import org.eclipse.equinox.internal.p2.publisher.eclipse.FeatureManifestParser;
import org.eclipse.equinox.p2.publisher.eclipse.Feature;
import org.xml.sax.SAXException;
public class BuildTimeFeatureParser extends FeatureManifestParser {
@Override
protected Feature createFeature(String id, String version) {
return new BuildTimeFeature(id, version);
}
public Feature parse(URL featureURL) throws SAXException, IOException {
InputStream in = featureURL.openStream();
try (in) {
return super.parse(in, featureURL);
}
}
}