- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 627 for resolves (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolver.java
import org.apache.maven.api.annotations.Nonnull; /** * Resolves artifact meta/pseudo versions. * * @since 4.0.0 */ @Experimental @Consumer public interface VersionResolver extends Service { /** * Resolves an artifact's meta version (if any) to a concrete version. * For example, resolves "1.0-SNAPSHOT" to "1.0-20090208.132618-23". *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* */ @Deprecated public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of the specified project. * * @param project The project whose dependencies should be resolved, must not be {@code null}. * @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}. * @param session The current build session, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java
package org.apache.maven.model.path; import java.io.File; /** * Resolves relative paths against a specific base directory. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface PathTranslator { /** * Resolves the specified path against the given base directory. The resolved path will be absolute and uses theRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResolver.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.version; /** * Resolves a version for a plugin. * * @since 3.0 */ public interface PluginVersionResolver { /** * Resolves the version for the specified request. * * @param request The request that holds the details about the plugin and the repositories to consult, must not beRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ModelPathTranslator.java
import org.apache.maven.model.building.ModelBuildingRequest; /** * Resolves relative paths of a model against a specific base directory. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelPathTranslator { /** * Resolves the well-known paths of the specified model against the given base directory. Paths within pluginRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
} /** * Resolves {@code var} using the encapsulated type mapping. If it maps to yet another * non-reified type or has bounds, {@code forDependants} is used to do further resolution, which * doesn't try to resolve any type variable on generic declarations that are already being * resolved. * * <p>Should only be called and overridden by {@link #resolve(TypeVariable)}. */Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 22:30:05 UTC 2025 - 25.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectDependenciesResolver.java
* under the License. */ package org.apache.maven.project; /** * Resolves the transitive dependencies of a project. * * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead */ @Deprecated(since = "4.0.0") public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of a project. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolver.java
* parameter {@code coordinates} is {@code null} or invalid */ default ArtifactResolverResult resolve(Session session, Collection<? extends ArtifactCoordinates> coordinates) { return resolve(ArtifactResolverRequest.build(session, coordinates)); } /** * Resolves several artifacts from their coordinates. * * @param session {@link Session}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResolver.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.prefix; /** * Resolves a plugin prefix. * * @since 3.0 */ public interface PluginPrefixResolver { /** * Resolves the plugin prefix for the specified request. * * @param request The request that holds the details about the plugin and the repositories to consult, must not beRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java
* @return The resolved plugin artifact, never {@code null}. * @throws PluginResolutionException If the plugin artifact could not be resolved. */ Artifact resolve(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session) throws PluginResolutionException; /** * Resolves the runtime dependencies of the specified plugin. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.7K bytes - Viewed (0)