Uses of Interface
io.quarkus.maven.dependency.ResolvedDependency
Packages that use ResolvedDependency
Package
Description
-
Uses of ResolvedDependency in io.quarkus.bootstrap.model
Methods in io.quarkus.bootstrap.model that return ResolvedDependencyModifier and TypeMethodDescriptionApplicationModel.getAppArtifact()Main application artifactDefaultApplicationModel.getAppArtifact()Methods in io.quarkus.bootstrap.model that return types with arguments of type ResolvedDependencyModifier and TypeMethodDescriptionApplicationModel.getDependencies()Returns application dependencies that are included into the runtime and augmentation (Quarkus build time) classpath.ApplicationModel.getDependencies(int flags) Returns application dependencies with the requested flags set.DefaultApplicationModel.getDependencies()DefaultApplicationModel.getDependencies(int flags) ApplicationModel.getDependenciesWithAnyFlag(int flags) Returns application dependencies that have any of the flags combined in the value of theflagsarguments set.default Iterable<ResolvedDependency> ApplicationModel.getDependenciesWithAnyFlag(int... flags) Returns application dependencies that have any of the flags passed in as arguments set.DefaultApplicationModel.getDependenciesWithAnyFlag(int flags) ApplicationModel.getRuntimeDependencies()Runtime dependencies of an applicationDefaultApplicationModel.getRuntimeDependencies() -
Uses of ResolvedDependency in io.quarkus.bootstrap.resolver
Methods in io.quarkus.bootstrap.resolver that return ResolvedDependencyModifier and TypeMethodDescriptionAppModelResolver.resolve(ArtifactCoords artifact) Resolves an artifact.Methods in io.quarkus.bootstrap.resolver that return types with arguments of type ResolvedDependencyModifier and TypeMethodDescriptiondefault Collection<ResolvedDependency> AppModelResolver.resolveUserDependencies(ArtifactCoords artifact) Resolve application direct and transitive dependencies configured by the user.AppModelResolver.resolveUserDependencies(ArtifactCoords artifact, Collection<Dependency> deps) Resolve application direct and transitive dependencies configured by the user, given the specific versions of the direct dependencies. -
Uses of ResolvedDependency in io.quarkus.maven.dependency
Subinterfaces of ResolvedDependency in io.quarkus.maven.dependencyClasses in io.quarkus.maven.dependency that implement ResolvedDependencyModifier and TypeClassDescriptionclassclassMethods in io.quarkus.maven.dependency that return ResolvedDependencyMethods in io.quarkus.maven.dependency with parameters of type ResolvedDependencyModifier and TypeMethodDescriptionstatic StringResolvedDependency.computeModuleName(ResolvedDependency dep) -
Uses of ResolvedDependency in io.quarkus.sbom
Methods in io.quarkus.sbom with parameters of type ResolvedDependencyModifier and TypeMethodDescriptionCoreSbomContributionConfig.addComponent(ResolvedDependency dep) Adds a Maven dependency as a component.CoreSbomContributionConfig.addComponent(ResolvedDependency dep, Path path) Adds a Maven dependency as a component with a file path that differs from the dependency's resolved path (e.g. after copying to a distribution directory).CoreSbomContributionConfig.addComponent(ResolvedDependency dep, Path path, String pedigree) Adds a Maven dependency as a component with a custom file path and optional pedigree notes describing modifications (e.g. tree-shaken classes).CoreSbomContributionConfig.setMainArtifact(ResolvedDependency dep) Sets the main component from a resolved Maven artifact.