Package io.quarkus.bootstrap.util
Class DependencyUtils
- java.lang.Object
-
- io.quarkus.bootstrap.util.DependencyUtils
-
public class DependencyUtils extends Object
-
-
Constructor Summary
Constructors Constructor Description DependencyUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArtifactCoordsgetCoords(org.eclipse.aether.artifact.Artifact artifact)static ArtifactKeygetKey(org.eclipse.aether.artifact.Artifact artifact)static List<org.eclipse.aether.graph.Dependency>mergeDeps(List<org.eclipse.aether.graph.Dependency> dominant, List<org.eclipse.aether.graph.Dependency> recessive, Map<ArtifactKey,String> managedVersions, Set<String> excludedScopes)static voidprintTree(org.eclipse.aether.graph.DependencyNode node)static voidprintTree(org.eclipse.aether.graph.DependencyNode node, PrintWriter out)static org.eclipse.aether.artifact.ArtifacttoArtifact(String str)
-
-
-
Method Detail
-
getKey
public static ArtifactKey getKey(org.eclipse.aether.artifact.Artifact artifact)
-
getCoords
public static ArtifactCoords getCoords(org.eclipse.aether.artifact.Artifact artifact)
-
mergeDeps
public static List<org.eclipse.aether.graph.Dependency> mergeDeps(List<org.eclipse.aether.graph.Dependency> dominant, List<org.eclipse.aether.graph.Dependency> recessive, Map<ArtifactKey,String> managedVersions, Set<String> excludedScopes)
-
toArtifact
public static org.eclipse.aether.artifact.Artifact toArtifact(String str)
-
printTree
public static void printTree(org.eclipse.aether.graph.DependencyNode node)
-
printTree
public static void printTree(org.eclipse.aether.graph.DependencyNode node, PrintWriter out)
-
-