Package org.sonar.core.plugins

Examples of org.sonar.core.plugins.PluginClassloaders


  private final ServerPluginJarsInstaller jarsInstaller;
  private final PluginClassloaders classloaders;
  private Map<String, Plugin> pluginsByKey;

  public ServerPluginRepository(ServerPluginJarsInstaller jarsInstaller) {
    this.classloaders = new PluginClassloaders(getClass().getClassLoader());
    this.jarsInstaller = jarsInstaller;
  }
View Full Code Here


        } else {
          LOG.debug("Excluded plugin: " + metadata.getKey());
        }
      }
    }
    classLoaders = new PluginClassloaders(Thread.currentThread().getContextClassLoader());
    pluginsByKey = classLoaders.init(metadataByKey.values());
  }
View Full Code Here

TOP

Related Classes of org.sonar.core.plugins.PluginClassloaders

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.