Package org.sonar.batch.languages

Examples of org.sonar.batch.languages.Language


  @Override
  public void start() {
    if (settings.hasKey(CoreProperties.PROJECT_LANGUAGE_PROPERTY)) {
      String languageKey = settings.getString(CoreProperties.PROJECT_LANGUAGE_PROPERTY);
      LOG.info("Language is forced to {}", languageKey);
      Language language = languages.get(languageKey);
      if (language == null) {
        throw MessageException.of("You must install a plugin that supports the language '" + languageKey + "'");
      }

      // force the registration of the language, even if there are no related source files
View Full Code Here

TOP

Related Classes of org.sonar.batch.languages.Language

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.