use of com.sonar.orchestrator.config.Licenses in project sonarlint-core by SonarSource.
the class LicenseTest method start.
@Before
public void start() {
FileUtils.deleteQuietly(sonarUserHome.toFile());
engine = new ConnectedSonarLintEngineImpl(ConnectedGlobalConfiguration.builder().setServerId("orchestrator").setSonarLintUserHome(sonarUserHome).setLogOutput((msg, level) -> System.out.println(msg)).build());
licenses = new Licenses();
}
Aggregations