Class SessionStub
- All Implemented Interfaces:
ProtoSession
,Session
Session
for basic testing scenarios.
Provides minimal implementation of session methods without mock dependencies.
For more comprehensive session mocking, consider using SessionMock
instead.
- Since:
- 4.0.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.maven.api.ProtoSession
ProtoSession.Builder
-
Constructor Summary
ConstructorsConstructorDescriptionSessionStub
(Map<String, String> userProperties) SessionStub
(Map<String, String> systemProperties, Map<String, String> userProperties, Settings settings) SessionStub
(Settings settings) -
Method Summary
Modifier and TypeMethodDescriptioncollectDependencies
(Artifact artifact, PathScope scope) Shortcut forgetService(DependencyResolver.class).collect(...)
collectDependencies
(DependencyCoordinates dependencyCoordinates, PathScope scope) Collects the transitive dependencies of some artifacts and builds a dependency graph.collectDependencies
(Project project, PathScope scope) Shortcut forgetService(DependencyResolver.class).collect(...)
createArtifact
(String groupId, String artifactId, String version, String extension) Shortcut forgetService(ArtifactFactory.class).create(...)
.createArtifact
(String groupId, String artifactId, String version, String classifier, String extension, String type) Shortcut forgetService(ArtifactFactory.class).create(...)
.createArtifactCoordinates
(String coordString) Creates a coordinates out of string that is formatted like:<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
.createArtifactCoordinates
(String groupId, String artifactId, String version, String extension) Shortcut forgetService(ArtifactFactory.class).create(...)
.createArtifactCoordinates
(String groupId, String artifactId, String version, String classifier, String extension, String type) Shortcut forgetService(ArtifactFactory.class).create(...)
.createArtifactCoordinates
(Artifact artifact) Shortcut forgetService(ArtifactFactory.class).create(...)
.createDependencyCoordinates
(ArtifactCoordinates artifactCoordinates) Shortcut forgetService(DependencyFactory.class).create(...)
.createDependencyCoordinates
(Dependency dependency) Shortcut forgetService(DependencyFactory.class).create(...)
.createLocalRepository
(Path path) Shortcut forgetService(RepositoryFactory.class).createLocal(...)
.createProducedArtifact
(String groupId, String artifactId, String version, String extension) Shortcut forgetService(ArtifactFactory.class).createProduced(...)
.createProducedArtifact
(String groupId, String artifactId, String version, String classifier, String extension, String type) Shortcut forgetService(ArtifactFactory.class).createProduced(...)
.createRemoteRepository
(String id, String url) Shortcut forgetService(RepositoryFactory.class).createRemote(...)
.createRemoteRepository
(Repository repository) Shortcut forgetService(RepositoryFactory.class).createRemote(...)
.void
deployArtifact
(RemoteRepository repository, ProducedArtifact... artifacts) Shortcut forgetService(ArtifactDeployer.class).deploy(...)
.flattenDependencies
(Node node, PathScope scope) Shortcut forgetService(DependencyResolver.class).flatten(...)
.getArtifactPath
(Artifact artifact) Shortcut forgetService(ArtifactManager.class).getPath(...)
.getData()
Retrieves the session data associated with this session.int
Returns the degree of concurrency for the build.getEffectiveProperties
(Project project) Each invocation computes a new map of effective properties.Returns the list of registered listeners.Retrieves the local repository associated with this session.Returns the current maven version.getPathForLocalArtifact
(Artifact artifact) Gets the relative path for a locally installed artifact.getPathForRemoteArtifact
(RemoteRepository remote, Artifact artifact) Gets the relative path for an artifact cached from a remote repository.getPluginContext
(Project project) Returns the plugin context for mojo being executed and the specifiedProject
, never returnsnull
as if context not present, creates it.Retrieves a list of projects associated with the session.Retrieves a list of remote repositories associated with this session.Gets the root directory of the session, which is the root directory for the top directory project.<T extends Service>
TgetService
(Class<T> clazz) Retrieves the service for the interfaceRetrieves the settings for the current session.Returns the start time of the session.Returns immutable system properties to use for interpolation.Retrieves toolchain models that have been explicitly configured.Gets the directory of the topmost project being built, usually the current directory or the directory pointed at by the-f/--file
command line argument.Returns immutable user properties to use for interpolation.void
installArtifacts
(Collection<ProducedArtifact> artifacts) Shortcut forgetService(ArtifactInstaller.class).install(...)
.void
installArtifacts
(ProducedArtifact... artifacts) Shortcut forgetService(ArtifactInstaller.class).install(...)
.boolean
isVersionSnapshot
(String version) Checks whether a given artifact version is considered aSNAPSHOT
or not.parseVersion
(String version) Parses the specified version string, for example "1.0".Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0)".parseVersionRange
(String versionRange) Parses the specified version range specification, for example "[1.0,2.0)".void
registerListener
(Listener listener) Register the given listener which will receive all events.Obtain theDependencyScope
from the specifiedid
.Obtain theLanguage
from the specifiedid
.Obtain thePackaging
from the specifiedid
.Obtain thePathScope
from the specifiedid
.Obtain theProjectScope
from the specifiedid
.requireType
(String id) Obtain theType
from the specifiedid
.resolveArtifact
(Artifact artifact) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifact
(ArtifactCoordinates coordinate) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifact
(ArtifactCoordinates coordinates, List<RemoteRepository> repositories) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifact
(Artifact artifact, List<RemoteRepository> repositories) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifacts
(Collection<? extends ArtifactCoordinates> collection) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifacts
(Collection<? extends ArtifactCoordinates> coordinates, List<RemoteRepository> repositories) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifacts
(Artifact... artifacts) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveArtifacts
(ArtifactCoordinates... artifactCoordinates) Shortcut forgetService(ArtifactResolver.class).resolve(...)
.resolveDependencies
(List<DependencyCoordinates> dependencyCoordinatess) Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.resolveDependencies
(DependencyCoordinates dependencyCoordinates) Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.resolveDependencies
(DependencyCoordinates dependencyCoordinates, PathScope scope, Collection<PathType> desiredTypes) Shortcut forgetService(DependencyResolver.class).resolve(...).getDispatchedPaths()
.resolveDependencies
(Project project, PathScope scope) Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.resolveDependencies
(Project project, PathScope scope, Collection<PathType> desiredTypes) Shortcut forgetService(DependencyResolver.class).resolve(...).getDispatchedPaths()
.resolveHighestVersion
(ArtifactCoordinates artifact, List<RemoteRepository> repositories) Resolves the highest available version of a version range.resolveVersion
(ArtifactCoordinates artifact) Resolves an artifact's meta version (if any) to a concrete version.resolveVersionRange
(ArtifactCoordinates artifact) Expands a version range to a list of matching versions, in ascending order.resolveVersionRange
(ArtifactCoordinates artifact, List<RemoteRepository> repositories) Expands a version range to a list of matching versions, in ascending order.void
setArtifactPath
(ProducedArtifact artifact, Path path) Shortcut forgetService(ArtifactManager.class).setPath(...)
.void
unregisterListener
(Listener listener) Unregisters a previously registered listener.withLocalRepository
(LocalRepository localRepository) Creates a derived session using the given local repository.withRemoteRepositories
(List<RemoteRepository> repositories) Creates a derived session using the given remote repositories.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.maven.api.ProtoSession
toBuilder
-
Constructor Details
-
SessionStub
-
SessionStub
public SessionStub() -
SessionStub
-
SessionStub
-
-
Method Details
-
getSettings
Description copied from interface:Session
Retrieves the settings for the current session.- Specified by:
getSettings
in interfaceSession
- Returns:
- the settings instance
-
getSystemProperties
Description copied from interface:ProtoSession
Returns immutable system properties to use for interpolation. The system properties are collected from the runtime environment such asSystem.getProperties()
and environment variables (prefixed withenv.
).- Specified by:
getSystemProperties
in interfaceProtoSession
- Returns:
- the system properties, never
null
-
getUserProperties
Description copied from interface:ProtoSession
Returns immutable user properties to use for interpolation. The user properties have been configured directly by the user, e.g. via the-Dkey=value
parameter on the command line.- Specified by:
getUserProperties
in interfaceProtoSession
- Returns:
- the user properties, never
null
-
getEffectiveProperties
Description copied from interface:Session
Each invocation computes a new map of effective properties. To be used in interpolation.Effective properties are computed from system, user and optionally project properties, layered with defined precedence onto each other to achieve proper precedence. Precedence is defined as:
- System properties (lowest precedence)
- Project properties (optional)
- User properties (highest precedence)
profile > project
, hence active profile property may override project property.The caller of this method should decide whether there is a project in scope (hence, a project instance needs to be passed) or not.
- Specified by:
getEffectiveProperties
in interfaceSession
- Parameters:
project
-Project
ornull
.- Returns:
- the effective properties, never
null
-
getLocalRepository
Description copied from interface:Session
Retrieves the local repository associated with this session.- Specified by:
getLocalRepository
in interfaceSession
- Returns:
- the local repository instance
-
getTopDirectory
Description copied from interface:ProtoSession
Gets the directory of the topmost project being built, usually the current directory or the directory pointed at by the-f/--file
command line argument.- Specified by:
getTopDirectory
in interfaceProtoSession
- Returns:
- the directory of the topmost project, never
null
- See Also:
-
getRootDirectory
Description copied from interface:ProtoSession
Gets the root directory of the session, which is the root directory for the top directory project.- Specified by:
getRootDirectory
in interfaceProtoSession
- Returns:
- the root directory, never
null
- See Also:
-
getRemoteRepositories
Description copied from interface:Session
Retrieves a list of remote repositories associated with this session.- Specified by:
getRemoteRepositories
in interfaceSession
- Returns:
- a list of remote repositories
-
getData
Description copied from interface:Session
Retrieves the session data associated with this session. -
getMavenVersion
Description copied from interface:Session
Returns the current maven version.- Specified by:
getMavenVersion
in interfaceSession
- Returns:
- the maven version, never
null
-
getDegreeOfConcurrency
public int getDegreeOfConcurrency()Description copied from interface:Session
Returns the degree of concurrency for the build.- Specified by:
getDegreeOfConcurrency
in interfaceSession
- Returns:
- the degree of concurrency
-
getStartTime
Description copied from interface:ProtoSession
Returns the start time of the session.- Specified by:
getStartTime
in interfaceProtoSession
- Returns:
- the start time as an Instant object, never
null
-
getProjects
Description copied from interface:Session
Retrieves a list of projects associated with the session.- Specified by:
getProjects
in interfaceSession
- Returns:
- a list of projects, never
null
-
getPluginContext
Description copied from interface:Session
Returns the plugin context for mojo being executed and the specifiedProject
, never returnsnull
as if context not present, creates it. Implementation note: while this method return type isMap
, the returned map instance implementsConcurrentMap
as well.- Specified by:
getPluginContext
in interfaceSession
-
getService
Description copied from interface:Session
Retrieves the service for the interface- Specified by:
getService
in interfaceSession
-
withLocalRepository
Description copied from interface:Session
Creates a derived session using the given local repository.- Specified by:
withLocalRepository
in interfaceSession
- Parameters:
localRepository
- the new local repository- Returns:
- the derived session
-
withRemoteRepositories
Description copied from interface:Session
Creates a derived session using the given remote repositories.- Specified by:
withRemoteRepositories
in interfaceSession
- Parameters:
repositories
- the new list of remote repositories- Returns:
- the derived session
-
registerListener
Description copied from interface:Session
Register the given listener which will receive all events.- Specified by:
registerListener
in interfaceSession
- Parameters:
listener
- the listener to register
-
unregisterListener
Description copied from interface:Session
Unregisters a previously registered listener.- Specified by:
unregisterListener
in interfaceSession
- Parameters:
listener
- the listener to unregister
-
getListeners
Description copied from interface:Session
Returns the list of registered listeners.- Specified by:
getListeners
in interfaceSession
- Returns:
- an immutable collection of listeners, never
null
-
createLocalRepository
Description copied from interface:Session
Shortcut forgetService(RepositoryFactory.class).createLocal(...)
.- Specified by:
createLocalRepository
in interfaceSession
- Parameters:
path
- location of the local repository to create- Returns:
- cache of artifacts downloaded from a remote repository or built locally
- See Also:
-
createRemoteRepository
Description copied from interface:Session
Shortcut forgetService(RepositoryFactory.class).createRemote(...)
.- Specified by:
createRemoteRepository
in interfaceSession
- Parameters:
id
- identifier of the remote repository to createurl
- location of the remote repository- Returns:
- remote repository that can be used to download or upload artifacts
- See Also:
-
createRemoteRepository
Description copied from interface:Session
Shortcut forgetService(RepositoryFactory.class).createRemote(...)
.- Specified by:
createRemoteRepository
in interfaceSession
- Parameters:
repository
- information needed for establishing connections with remote repository- Returns:
- remote repository that can be used to download or upload artifacts
- See Also:
-
createArtifact
Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifact
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecified- Returns:
- artifact with the given coordinates
- See Also:
-
createArtifact
public Artifact createArtifact(String groupId, String artifactId, String version, String classifier, String extension, String type) Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifact
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedclassifier
- the artifact classifier, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecifiedtype
- the artifact type, ornull
is unspecified- Returns:
- artifact with the given coordinates
- See Also:
-
createProducedArtifact
public ProducedArtifact createProducedArtifact(String groupId, String artifactId, String version, String extension) Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).createProduced(...)
.- Specified by:
createProducedArtifact
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecified- Returns:
- artifact with the given coordinates
- See Also:
-
createProducedArtifact
public ProducedArtifact createProducedArtifact(String groupId, String artifactId, String version, String classifier, String extension, String type) Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).createProduced(...)
.- Specified by:
createProducedArtifact
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedclassifier
- the artifact classifier, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecifiedtype
- the artifact type, ornull
is unspecified- Returns:
- artifact with the given coordinates
- See Also:
-
createArtifactCoordinates
public ArtifactCoordinates createArtifactCoordinates(String groupId, String artifactId, String version, String extension) Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifactCoordinates
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecified- Returns:
- coordinates used to point to the artifact
- See Also:
-
createArtifactCoordinates
Description copied from interface:Session
Creates a coordinates out of string that is formatted like:<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>
.Shortcut for
getService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifactCoordinates
in interfaceSession
- Parameters:
coordString
- the string having "standard" coordinates.- Returns:
- coordinates used to point to the artifact
- See Also:
-
createArtifactCoordinates
public ArtifactCoordinates createArtifactCoordinates(String groupId, String artifactId, String version, String classifier, String extension, String type) Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifactCoordinates
in interfaceSession
- Parameters:
groupId
- the group identifier, ornull
is unspecifiedartifactId
- the artifact identifier, ornull
is unspecifiedversion
- the artifact version, ornull
is unspecifiedclassifier
- the artifact classifier, ornull
is unspecifiedextension
- the artifact extension, ornull
is unspecifiedtype
- the artifact type, ornull
is unspecified- Returns:
- coordinates used to point to the artifact
- See Also:
-
createArtifactCoordinates
Description copied from interface:Session
Shortcut forgetService(ArtifactFactory.class).create(...)
.- Specified by:
createArtifactCoordinates
in interfaceSession
- Parameters:
artifact
- artifact from which to get coordinates- Returns:
- coordinates used to point to the artifact
- See Also:
-
createDependencyCoordinates
Description copied from interface:Session
Shortcut forgetService(DependencyFactory.class).create(...)
.- Specified by:
createDependencyCoordinates
in interfaceSession
- Parameters:
artifactCoordinates
- artifact coordinates to get as a dependency coordinates- Returns:
- dependency coordinates for the given artifact
- See Also:
-
createDependencyCoordinates
Description copied from interface:Session
Shortcut forgetService(DependencyFactory.class).create(...)
.- Specified by:
createDependencyCoordinates
in interfaceSession
- Parameters:
dependency
- dependency for which to get the coordinates- Returns:
- coordinates for the given dependency
- See Also:
-
resolveArtifact
Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifact
in interfaceSession
- Parameters:
artifact
- the artifact to resolve- Returns:
- requested artifact together with the path to its file
- See Also:
-
resolveArtifact
Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifact
in interfaceSession
- Parameters:
coordinate
- coordinates of the artifact to resolve- Returns:
- requested artifact together with the path to its file
- See Also:
-
resolveArtifact
public DownloadedArtifact resolveArtifact(ArtifactCoordinates coordinates, List<RemoteRepository> repositories) Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifact
in interfaceSession
- Parameters:
coordinates
- coordinates of the artifact to resolverepositories
- repositories to use, ifnull
, the session repositories are used- Returns:
- requested artifact together with the path to its file
- See Also:
-
resolveArtifact
Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifact
in interfaceSession
- Parameters:
artifact
- the artifact to resolverepositories
- repositories to use, ifnull
, the session repositories are used- Returns:
- requested artifact together with the path to its file
- See Also:
-
resolveArtifacts
Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifacts
in interfaceSession
- Parameters:
artifactCoordinates
- coordinates of all artifacts to resolve- Returns:
- requested artifacts together with the paths to their files
- See Also:
-
resolveArtifacts
public Collection<DownloadedArtifact> resolveArtifacts(Collection<? extends ArtifactCoordinates> collection) Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifacts
in interfaceSession
- Parameters:
collection
- coordinates of all artifacts to resolve- Returns:
- requested artifacts together with the paths to their files
- See Also:
-
resolveArtifacts
Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifacts
in interfaceSession
- Parameters:
artifacts
- all artifacts to resolve- Returns:
- requested artifacts together with the paths to their files
- See Also:
-
resolveArtifacts
public Collection<DownloadedArtifact> resolveArtifacts(Collection<? extends ArtifactCoordinates> coordinates, List<RemoteRepository> repositories) Description copied from interface:Session
Shortcut forgetService(ArtifactResolver.class).resolve(...)
.- Specified by:
resolveArtifacts
in interfaceSession
- Parameters:
coordinates
- coordinates of all artifacts to resolverepositories
- repositories to use, ifnull
, the session repositories are used- Returns:
- requested artifacts together with the paths to their files
- See Also:
-
flattenDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).flatten(...)
.- Specified by:
flattenDependencies
in interfaceSession
- Parameters:
node
- node for which to get a flattened listscope
- build path scope (main compile, test compile, etc.) of desired nodes- Returns:
- flattened list of node with the given build path scope
- See Also:
-
resolveDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.- Specified by:
resolveDependencies
in interfaceSession
- Parameters:
dependencyCoordinates
- coordinates of the dependency for which to get the paths- Returns:
- paths to the transitive dependencies of the given dependency
- See Also:
-
resolveDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.- Specified by:
resolveDependencies
in interfaceSession
- Parameters:
dependencyCoordinatess
- coordinates of all dependency for which to get the paths- Returns:
- paths to the transitive dependencies of the given dependencies
- See Also:
-
resolveDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).resolve(...).getPaths()
.- Specified by:
resolveDependencies
in interfaceSession
- Parameters:
project
- the project for which to get dependenciesscope
- build path scope (main compile, test compile, etc.) of desired paths- Returns:
- paths to the transitive dependencies of the given project
- See Also:
-
resolveVersion
Description copied from interface:Session
Resolves an artifact's meta version (if any) to a concrete version. For example, resolves "1.0-SNAPSHOT" to "1.0-20090208.132618-23".Shortcut for
getService(VersionResolver.class).resolve(...)
- Specified by:
resolveVersion
in interfaceSession
- Parameters:
artifact
- the artifact for which to resolve the version- Returns:
- resolved version of the given artifact
- See Also:
-
resolveVersionRange
Description copied from interface:Session
Expands a version range to a list of matching versions, in ascending order. For example, resolves "[3.8,4.0)" to "3.8", "3.8.1", "3.8.2". The returned list of versions is only dependent on the configured repositories and their contents. The supplied request may also refer to a single concrete version rather than a version range. In this case though, the result contains simply the (parsed) input version, regardless of the repositories and their contents.- Specified by:
resolveVersionRange
in interfaceSession
- Parameters:
artifact
- the artifact for which to resolve the versions- Returns:
- a list of resolved
Version
s. - See Also:
-
resolveVersionRange
public List<Version> resolveVersionRange(ArtifactCoordinates artifact, List<RemoteRepository> repositories) Description copied from interface:Session
Expands a version range to a list of matching versions, in ascending order. For example, resolves "[3.8,4.0)" to "3.8", "3.8.1", "3.8.2". The returned list of versions is only dependent on the configured repositories and their contents. The supplied request may also refer to a single concrete version rather than a version range. In this case though, the result contains simply the (parsed) input version, regardless of the repositories and their contents.- Specified by:
resolveVersionRange
in interfaceSession
- Parameters:
artifact
- the artifact for which to resolve the versionsrepositories
- the repositories to use, or the session repositories ifnull
- Returns:
- a list of resolved
Version
s. - See Also:
-
installArtifacts
Description copied from interface:Session
Shortcut forgetService(ArtifactInstaller.class).install(...)
.- Specified by:
installArtifacts
in interfaceSession
- Parameters:
artifacts
- the artifacts to install- See Also:
-
installArtifacts
Description copied from interface:Session
Shortcut forgetService(ArtifactInstaller.class).install(...)
.- Specified by:
installArtifacts
in interfaceSession
- Parameters:
artifacts
- the artifacts to install- See Also:
-
deployArtifact
Description copied from interface:Session
Shortcut forgetService(ArtifactDeployer.class).deploy(...)
.- Specified by:
deployArtifact
in interfaceSession
- Parameters:
repository
- the repository where to deploy artifactsartifacts
- the artifacts to deploy- See Also:
-
setArtifactPath
Description copied from interface:Session
Shortcut forgetService(ArtifactManager.class).setPath(...)
.- Specified by:
setArtifactPath
in interfaceSession
- Parameters:
artifact
- the artifact for which to associate a pathpath
- path to associate to the given artifact- See Also:
-
getArtifactPath
Description copied from interface:Session
Shortcut forgetService(ArtifactManager.class).getPath(...)
.- Specified by:
getArtifactPath
in interfaceSession
- Parameters:
artifact
- the artifact for which to get a path- Returns:
- path associated to the given artifact
- See Also:
-
isVersionSnapshot
Description copied from interface:Session
Checks whether a given artifact version is considered aSNAPSHOT
or not.Shortcut for
getService(ArtifactManager.class).isSnapshot(...)
.In case there is
Artifact
in scope, the recommended way to perform this check is use ofArtifact.isSnapshot()
instead.- Specified by:
isVersionSnapshot
in interfaceSession
- Parameters:
version
- artifact version- Returns:
- whether the given version is a snapshot
- See Also:
-
collectDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).collect(...)
- Specified by:
collectDependencies
in interfaceSession
- Parameters:
artifact
- artifact for which to get the dependencies, including transitive onesscope
- the {link PathScope} to collect dependencies, must not benull
- Returns:
- root node of the dependency graph for the given artifact
- See Also:
-
collectDependencies
Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).collect(...)
- Specified by:
collectDependencies
in interfaceSession
- Parameters:
project
- project for which to get the dependencies, including transitive onesscope
- the {link PathScope} to collect dependencies, must not benull
- Returns:
- root node of the dependency graph for the given project
- See Also:
-
collectDependencies
Description copied from interface:Session
Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the artifact files.Shortcut for
getService(DependencyResolver.class).resolve(...)
- Specified by:
collectDependencies
in interfaceSession
- Parameters:
dependencyCoordinates
- dependency for which to get transitive dependenciesscope
- the {link PathScope} to collect dependencies, must not benull
- Returns:
- root node of the dependency graph for the given artifact
- See Also:
-
getPathForLocalArtifact
Description copied from interface:Session
Gets the relative path for a locally installed artifact. Note that the artifact need not actually exist yet at the returned location, the path merely indicates where the artifact would eventually be stored.Shortcut for
getService(LocalArtifactManager.class).getPathForLocalArtitact(...)
.- Specified by:
getPathForLocalArtifact
in interfaceSession
- Parameters:
artifact
- the artifact for which to get a local path- Returns:
- local path associated to the given artifact, or
null
if none - See Also:
-
getPathForRemoteArtifact
Description copied from interface:Session
Gets the relative path for an artifact cached from a remote repository. Note that the artifact need not actually exist yet at the returned location, the path merely indicates where the artifact would eventually be stored.Shortcut for
getService(LocalArtifactManager.class).getPathForRemoteArtifact(...)
.- Specified by:
getPathForRemoteArtifact
in interfaceSession
- Parameters:
remote
- the repository from where artifacts are downloadedartifact
- the artifact for which to get a path- Returns:
- path associated to the given artifact
- See Also:
-
parseVersion
Description copied from interface:Session
Parses the specified version string, for example "1.0".Shortcut for
getService(VersionParser.class).parseVersion(...)
.- Specified by:
parseVersion
in interfaceSession
- Parameters:
version
- the version string to parse- Returns:
- the version parsed from the given string
- See Also:
-
parseVersionRange
Description copied from interface:Session
Parses the specified version range specification, for example "[1.0,2.0)".Shortcut for
getService(VersionParser.class).parseVersionRange(...)
.- Specified by:
parseVersionRange
in interfaceSession
- Parameters:
versionRange
- the version string to parse- Returns:
- the version range parsed from the given string
- See Also:
-
parseVersionConstraint
Description copied from interface:Session
Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0)".Shortcut for
getService(VersionParser.class).parseVersionConstraint(...)
.- Specified by:
parseVersionConstraint
in interfaceSession
- Parameters:
s
- the version string to parse- Returns:
- the version constraint parsed from the given string
- See Also:
-
resolveDependencies
public Map<PathType, List<Path>> resolveDependencies(DependencyCoordinates dependencyCoordinates, PathScope scope, Collection<PathType> desiredTypes) Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).resolve(...).getDispatchedPaths()
.- Specified by:
resolveDependencies
in interfaceSession
- Parameters:
dependencyCoordinates
- coordinates of the dependency for which to get the pathsscope
- build path scope (main compile, test compile, etc.) of desired pathsdesiredTypes
- the type of paths to include in the result- Returns:
- paths to the transitive dependencies of the given project
- See Also:
-
resolveDependencies
public Map<PathType, List<Path>> resolveDependencies(Project project, PathScope scope, Collection<PathType> desiredTypes) Description copied from interface:Session
Shortcut forgetService(DependencyResolver.class).resolve(...).getDispatchedPaths()
.- Specified by:
resolveDependencies
in interfaceSession
- Parameters:
project
- the project for which to get dependenciesscope
- build path scope (main compile, test compile, etc.) of desired pathsdesiredTypes
- the type of paths to include in the result- Returns:
- paths to the transitive dependencies of the given project
- See Also:
-
requireType
-
requireLanguage
-
requirePackaging
-
requireProjectScope
Description copied from interface:Session
Obtain theProjectScope
from the specifiedid
.Shortcut for
getService(ProjectScopeRegistry.class).require(...)
.- Specified by:
requireProjectScope
in interfaceSession
- See Also:
-
requireDependencyScope
Description copied from interface:Session
Obtain theDependencyScope
from the specifiedid
.Shortcut for
DependencyScope.forId(...)
with a verification that the given identifier exists.- Specified by:
requireDependencyScope
in interfaceSession
- Parameters:
id
- the identifier of the scope (case-sensitive)- Returns:
- the scope for the given identifier (never null)
- See Also:
-
requirePathScope
-
resolveHighestVersion
public Optional<Version> resolveHighestVersion(ArtifactCoordinates artifact, List<RemoteRepository> repositories) Description copied from interface:Session
Resolves the highest available version of a version range. The returned version is only dependent on the configured repositories and their contents. The supplied request may also refer to a single concrete version rather than a version range. In this case though, the result contains simply the (parsed) input version, regardless of the repositories and their contents.- Specified by:
resolveHighestVersion
in interfaceSession
- Parameters:
artifact
- the artifact for which to resolve the versionsrepositories
- the repositories to use, or the session repositories ifnull
- Returns:
- the highest resolved
Version
. - See Also:
-
getToolchains
Description copied from interface:Session
Retrieves toolchain models that have been explicitly configured.- Specified by:
getToolchains
in interfaceSession
- Returns:
- the toolchain models
-