Skip to content

Commit

Permalink
Merge pull request quarkusio#18150 from aloubyansky/deployment-deps-r…
Browse files Browse the repository at this point in the history
…epos

Use proper Maven repositories to resolve deployment dependencies
  • Loading branch information
gsmet authored Jun 28, 2021
2 parents a8d7ed6 + fbf177f commit 049068b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ void activate() throws BootstrapDependencyProcessingException {
collectingTopRuntimeNodes = false;
final ExtensionDependency extDep = getExtensionDependency();
final DependencyNode originalNode = collectDependencies(info.runtimeArtifact, extDep.exclusions);
final DependencyNode rtNode = extDep.runtimeNode;
final DefaultDependencyNode rtNode = (DefaultDependencyNode) extDep.runtimeNode;
rtNode.setRepositories(originalNode.getRepositories());
// if this node has conditional dependencies on its own, they may have been activated by this time
// in which case they would be included into its children
List<DependencyNode> currentChildren = rtNode.getChildren();
Expand Down

0 comments on commit 049068b

Please sign in to comment.