Package org.apache.ivy.osgi.core

Examples of org.apache.ivy.osgi.core.BundleArtifact


    public static BundleInfo pluginAsBundle(URI baseUri, EclipsePlugin plugin) {
        BundleInfo b = new BundleInfo(plugin.getId(), plugin.getVersion());

        URI uri = baseUri.resolve("plugins/" + plugin.getId() + '_' + plugin.getVersion() + ".jar");
        b.addArtifact(new BundleArtifact(false, uri, null));

        return b;
    }
View Full Code Here

TOP

Related Classes of org.apache.ivy.osgi.core.BundleArtifact

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.