Package org.apache.geronimo.mavenplugins.car

Examples of org.apache.geronimo.mavenplugins.car.PluginBootstrap2


    }

    public void executeBootShell() throws Exception {
        getLog().debug("Starting bootstrap shell...");

        PluginBootstrap2 boot = new PluginBootstrap2();

        boot.setBuildDir(outputDirectory);
        boot.setCarFile(getArtifactInRepositoryDir());
        boot.setLocalRepo(repository);
        boot.setPlan(planFile);
        Framework framework = getFramework();
        BundleContext bundleContext = framework.getBundleContext();
        boot.setBundleContext(bundleContext);

        // Keep the same behavior with RepositoryConfigurationStore
        boot.setExpanded(false);

        boot.bootstrap();
    }
View Full Code Here


    }

    public void executeBootShell() throws Exception {
        getLog().debug("Starting bootstrap shell...");

        PluginBootstrap2 boot = new PluginBootstrap2();

        boot.setBuildDir(outputDirectory);
        boot.setCarFile(getArtifactInRepositoryDir());
        boot.setLocalRepo(repository);
        boot.setPlan(planFile);
        Framework framework = getFramework();
        BundleContext bundleContext = framework.getBundleContext();
        boot.setBundleContext(bundleContext);

        // Keep the same behavior with RepositoryConfigurationStore
        boot.setExpanded(false);

        boot.bootstrap();
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.mavenplugins.car.PluginBootstrap2

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.