use of org.sonar.scanner.bootstrap.ScannerPluginJarExploder in project sonarqube by SonarSource.
the class ScannerPluginJarExploderTest method setUp.
@Before
public void setUp() throws IOException {
userHome = temp.newFolder();
FileCache fileCache = new FileCacheBuilder(new Slf4jLogger()).setUserHome(userHome).build();
underTest = new ScannerPluginJarExploder(fileCache);
}
Aggregations