Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 297 for resolve (0.27 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.resolver.artifact;
    
    /**
     * The keys for Maven specific properties of artifacts. These properties "extend" (or supplement) the Resolver
     * core properties defined in {@link org.eclipse.aether.artifact.ArtifactProperties}.
     *
     * @see org.eclipse.aether.artifact.ArtifactProperties
     * @since 4.0.0
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/PluginVersionResolverStub.java

    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     */
    public class PluginVersionResolverStub implements PluginVersionResolver {
    
        public PluginVersionResult resolve(PluginVersionRequest request) throws PluginVersionResolutionException {
            return new PluginVersionResult() {
                public String getVersion() {
                    return "0.42";
                }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.project.MavenProject;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * Collects settings required to resolve the version for a plugin.
     *
     * @since 3.0
     */
    public class DefaultPluginVersionRequest implements PluginVersionRequest {
    
        private String groupId;
    
        private String artifactId;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResolver.java

         *            {@code null}.
         * @return The result of the prefix resolution, never {@code null}.
         * @throws NoPluginFoundForPrefixException If the plugin prefix could not be resolved.
         */
        PluginPrefixResult resolve(PluginPrefixRequest request) throws NoPluginFoundForPrefixException;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

    public interface BeanConfigurationValuePreprocessor {
    
        /**
         * Preprocesses the specified bean configuration value. The optional type provided to this method is a hint (not a
         * requirement) for the preprocessor to resolve the value to a compatible value or a (string) value than can be
         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

         */
        Set<Artifact> resolve(MavenProject project, Collection<String> scopesToResolve, MavenSession session)
                throws ArtifactResolutionException, ArtifactNotFoundException;
    
        /**
         * Resolves the transitive dependencies of the specified project.
         *
         * @param project         The project whose dependencies should be resolved, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

    import org.apache.maven.api.model.Parent;
    
    /**
     * Resolves a POM from its coordinates.
     */
    public interface ModelResolver extends Service {
    
        /**
         * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.
         *
         * @param session The session to use to resolve the model, must not be {@code null}.
         * @param parent The parent coordinates to resolve, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

          <configuration>
            <![CDATA[
        <offline>true</offline>
        ]]></configuration>
          <description>
            <![CDATA[
          Flags the system as offline, to prevent accessing the network to resolve artifacts or execute plugins.
    
          NOTE: It's also possible to switch to offline mode on a per-build basis, using the '-o' command-line option.
        ]]></description>
        </expression>
        <expression>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultVersionResolver.java

        @Inject
        public DefaultVersionResolver(RepositorySystem repositorySystem) {
            this.repositorySystem = repositorySystem;
        }
    
        @Override
        public VersionResolverResult resolve(VersionResolverRequest request) throws VersionResolverException {
            nonNull(request, "request");
            InternalSession session = InternalSession.from(request.getSession());
    
            try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactResolver.java

    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    @Named
    @Singleton
    public class DefaultArtifactResolver implements ArtifactResolver {
    
        @Override
        public ArtifactResolverResult resolve(ArtifactResolverRequest request)
                throws ArtifactResolverException, IllegalArgumentException {
            nonNull(request, "request");
            InternalSession session = InternalSession.from(request.getSession());
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 3.6K bytes
    - Viewed (0)
Back to top