String |
AppModelResolver.getLatestVersion(ArtifactCoords artifact,
String upToVersion,
boolean inclusive) |
Returns the latest version for the artifact up to the version specified.
|
String |
AppModelResolver.getLatestVersionFromRange(ArtifactCoords appArtifact,
String range) |
Resolves the latest version from the specified range.
|
String |
AppModelResolver.getNextVersion(ArtifactCoords artifact,
String fromVersion,
boolean fromVersionIncluded,
String upToVersion,
boolean upToVersionIncluded) |
Returns the next version of the artifact from the specified range.
|
List<String> |
AppModelResolver.listLaterVersions(ArtifactCoords artifact,
String upToVersion,
boolean inclusive) |
Lists versions released later than the version of the artifact up to the version
specified or all the later versions in case the up-to-version is not provided.
|
void |
AppModelResolver.relink(ArtifactCoords artifact,
Path localPath) |
(Re-)links an artifact to a path.
|
ResolvedDependency |
AppModelResolver.resolve(ArtifactCoords artifact) |
Resolves an artifact.
|
ApplicationModel |
AppModelResolver.resolveManagedModel(ArtifactCoords appArtifact,
Collection<Dependency> directDeps,
ArtifactCoords managingProject,
Set<ArtifactKey> localProjects) |
|
ApplicationModel |
AppModelResolver.resolveModel(ArtifactCoords artifact) |
Resolve dependencies that are required at runtime, excluding test and optional dependencies.
|
ApplicationModel |
AppModelResolver.resolveModel(ArtifactCoords root,
Collection<Dependency> deps) |
Resolve artifact dependencies given the specific versions of the direct dependencies
|
default Collection<ResolvedDependency> |
AppModelResolver.resolveUserDependencies(ArtifactCoords artifact) |
Resolve application direct and transitive dependencies configured by the user.
|
Collection<ResolvedDependency> |
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.
|