mirror of
https://github.com/rife2/bld
synced 2026-08-04 15:07:46 +02:00
Compare commits
2 commits
a42248ca72
...
295dfb1973
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
295dfb1973 | ||
|
|
734ac585ab |
|
|
@ -58,6 +58,9 @@ public class DownloadOperation extends AbstractOperation<DownloadOperation> {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!silent()) {
|
||||
System.out.println("Analyzing dependencies...");
|
||||
}
|
||||
executeDownloadCompileDependencies();
|
||||
executeDownloadProvidedDependencies();
|
||||
executeDownloadRuntimeDependencies();
|
||||
|
|
|
|||
|
|
@ -95,6 +95,9 @@ public class WrapperExtensionResolver {
|
|||
roots.add(d);
|
||||
}
|
||||
}
|
||||
if (!roots.isEmpty()) {
|
||||
System.out.println("Analyzing bld extension dependencies...");
|
||||
}
|
||||
var dependencies = new ParallelDependencyResolver(resolution_, retriever_, repositories_).resolveAllDependencies(roots, Scope.compile, Scope.runtime);
|
||||
if (!dependencies.isEmpty()) {
|
||||
ensurePrintedHeader();
|
||||
|
|
|
|||
Loading…
Reference in a new issue