Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for amatch (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTransportProvider.java

                                InternalSession.from(session).getSession(),
                                ((DefaultRemoteRepository) repository).getRepository()));
            } catch (URISyntaxException e) {
                throw new TransportProviderException("Remote repository URL invalid", e);
            } catch (NoTransporterException e) {
                throw new TransportProviderException("Unsupported remote repository", e);
            }
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransportProvider.java

                                InternalSession.from(session).getSession(),
                                ((DefaultRemoteRepository) repository).getRepository()));
            } catch (URISyntaxException e) {
                throw new TransportProviderException("Remote repository URL invalid", e);
            } catch (NoTransporterException e) {
                throw new TransportProviderException("Unsupported remote repository", e);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                return cache.computeIfAbsent(key, k -> {
                    try {
                        return supplier.load();
                    } catch (PluginResolutionException | PluginContainerException e) {
                        throw new RuntimeException(e);
                    }
                });
            } catch (RuntimeException e) {
                if (e.getCause() instanceof PluginResolutionException) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            }
    
            try {
                return repositorySystem.createLocalRepository(new File(localRepositoryPath));
            } catch (Exception e) {
                throw new MavenExecutionRequestPopulationException("Cannot create local repository.", e);
            }
        }
    
        private void baseDirectory(MavenExecutionRequest request) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSettingsXmlFactory.java

                if (reader != null) {
                    return xml.read(reader, request.isStrict(), source);
                } else {
                    return xml.read(inputStream, request.isStrict(), source);
                }
            } catch (Exception e) {
                throw new XmlReaderException("Unable to read settings", e);
            }
        }
    
        @Override
        public void write(XmlWriterRequest<Settings> request) throws XmlWriterException {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/metadata/TestMetadataSource.java

                Artifact a = null;
                try {
                    a = factory.createBuildArtifact("org.apache.maven", "h", "1.0", "jar");
                    dependencies.add(a);
                } catch (Exception e) {
                    throw new ArtifactMetadataRetrievalException("Error retrieving metadata", e, a);
                }
            }
    
            if ("i".equals(artifact.getArtifactId())) {
                Artifact a = null;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

                                projectStream.wait(100);
                            } catch (InterruptedException e) {
                                throw new RuntimeException(e);
                            }
                            try {
                                projectOs.writeTo(originalSystemOUtStream);
                            } catch (IOException e) {
                                throw new RuntimeException(e);
                            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsXmlFactory.java

                if (reader != null) {
                    return xml.read(reader, request.isStrict(), source);
                } else {
                    return xml.read(inputStream, request.isStrict(), source);
                }
            } catch (Exception e) {
                throw new XmlReaderException("Unable to read settings: " + getMessage(e), getLocation(e), e);
            }
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import org.apache.maven.artifact.Artifact;
    
    /**
     * This exception is thrown if an application attempts to attach
     * two of the same artifacts to a single project.
     *
     * TODO Make this a checked exception, and modify the API of MavenProjectHelper.
     * Currently, this modification would create compatibility problems for existing plugins.
    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)
  10. maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithProblemMessageMatcher.java

            if (!(o instanceof ProjectBuildingResult)) {
                return false;
            }
    
            final ProjectBuildingResult r = (ProjectBuildingResult) o;
    
            return r.getProblems().stream().anyMatch(p -> p.getMessage().contains(problemMessage));
        }
    
        @Override
        public void describeTo(Description description) {
            description.appendText("a ProjectBuildingResult with message ").appendValue(problemMessage);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.7K bytes
    - Viewed (0)
Back to top