Package com.atlassian.plugin.main

Examples of com.atlassian.plugin.main.PluginsConfigurationBuilder


    final String region = config.getRegion();

    // Construct the configuration
    final File pluginsDirectory = home.getPluginsDirectory();
    File pluginCache = getPluginCacheFolder(region, home.getPluginsCacheDirectory());
    PluginsConfiguration config = new PluginsConfigurationBuilder().pluginDirectory(pluginsDirectory)
        .packageScannerConfiguration(scannerConfig)
        .hotDeployPollingFrequency(PLUGIN_UPDATE_FREQUENCY, TimeUnit.SECONDS)
        .hostComponentProvider(host).moduleDescriptorFactory(modules).osgiPersistentCache(pluginCache).build();

    // Start the plugin framework
View Full Code Here

TOP

Related Classes of com.atlassian.plugin.main.PluginsConfigurationBuilder

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.