use of org.commonjava.maven.galley.nfc.NoOpNotFoundCache in project indy by Commonjava.
the class DownloadManagerTest method setupTest.
@Before
public void setupTest() throws Exception {
data = new MemoryStoreDataManager(true);
WeftExecutorService rescanService = new PoolWeftExecutorService("test-rescan-executor", (ThreadPoolExecutor) Executors.newCachedThreadPool(), 2, 10f, false, null, null);
downloader = new DefaultDownloadManager(data, fixture.getTransferManager(), new IndyLocationExpander(data), null, new NoOpNotFoundCache(), rescanService);
}
Aggregations