Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 523 for repositoryId (0.21 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                        repository.getId(),
                        repository.getUrl(),
                        repository.getLayout(),
                        repository.getSnapshots(),
                        repository.getReleases());
    
                repository.setMirroredRepositories(Collections.singletonList(original));
    
                repository.setId(mirror.getId());
                repository.setUrl(mirror.getUrl());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/InvalidRepositoryException.java

        }
    
        protected InvalidRepositoryException(String message, String repositoryId, ComponentLookupException cause) {
            super(message, cause);
            this.repositoryId = repositoryId;
        }
    
        @Deprecated
        public InvalidRepositoryException(String message, Throwable t) {
            super(message, t);
            this.repositoryId = null;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super("While configuring wagon for '" + repositoryId + "': " + message);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java

    @Deprecated
    public class WagonConfigurationException extends org.apache.maven.repository.legacy.WagonConfigurationException {
        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
            super(repositoryId, message, cause);
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super(repositoryId, message);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java

     * under the License.
     */
    package org.apache.maven.repository.legacy.repository;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.Map;
    
    import org.apache.maven.artifact.UnknownRepositoryLayoutException;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                        repository.getId(),
                        repository.getUrl(),
                        repository.getLayout(),
                        repository.getSnapshots(),
                        repository.getReleases());
    
                repository.setMirroredRepositories(Collections.singletonList(original));
    
                repository.setId(mirror.getId());
                repository.setUrl(mirror.getUrl());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/UnknownRepositoryLayoutException.java

        public UnknownRepositoryLayoutException(String repositoryId, String layoutId) {
            super("Cannot find ArtifactRepositoryLayout instance for: " + layoutId, repositoryId);
            this.layoutId = layoutId;
        }
    
        public UnknownRepositoryLayoutException(String repositoryId, String layoutId, ComponentLookupException e) {
            super("Cannot find ArtifactRepositoryLayout instance for: " + layoutId, repositoryId, e);
            this.layoutId = layoutId;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/MissingRepositoryElementException.java

    import org.apache.maven.artifact.InvalidRepositoryException;
    
    /**
     * Error constructing an artifact repository.
     */
    @Deprecated
    public class MissingRepositoryElementException extends InvalidRepositoryException {
    
        public MissingRepositoryElementException(String message, String repositoryId) {
            super(message, repositoryId);
        }
    
        public MissingRepositoryElementException(String message) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  9. api/maven-api-settings/src/main/mdo/settings.mdo

            }
            return match;
        }
    
        @Deprecated
        public Mirror getMirrorOf(String repositoryId) {
            Mirror match = null;
            java.util.List<Mirror> mirrors = getMirrors();
            if (mirrors != null && repositoryId != null) {
                for (Mirror mirror : mirrors) {
                    if (repositoryId.equals(mirror.getMirrorOf())) {
                        match = mirror;
                        break;
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    META-INF/plexus/components.xml org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa default org.apache.maven.artifact.repository.layout.DefaultRepositoryLay org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa legacy org.apache.maven.artifact.repository.layout.LegacyRepositoryLayo org.codehaus.plexus.collections.ActiveMap repositoryLayouts org.codehaus.plexus.collections.DefaultActiveMap org.apache.maven.artifact.repository.layout.ArtifactRepositoryLa org.apache.maven.artifac...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
Back to top