Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for amatch (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

                try {
                    String version = resolveVersion(artifact, request);
                    artifact.updateVersion(version, request.getLocalRepository());
                } catch (RepositoryMetadataResolutionException e) {
                    throw new ArtifactResolutionException(e.getMessage(), artifact, e);
                }
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                        ClassRealm classRealm = world.newRealm(realmId, null);
    
                        logger.debug("Created new class realm {}", realmId);
    
                        return classRealm;
                    } catch (DuplicateRealmException e) {
                        realmId = id + '-' + random.nextInt();
                    }
                }
            }
        }
    
        public ClassRealm getMavenApiRealm() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

                        new InstallRequest().setArtifacts(session.toArtifacts(request.getArtifacts()));
    
                InstallResult result = repositorySystem.install(session.getSession(), installRequest);
            } catch (InstallationException e) {
                throw new ArtifactInstallerException(e.getMessage(), e);
            }
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

                        .setArtifacts(session.toArtifacts(artifacts));
    
                DeployResult result = session.getRepositorySystem().deploy(session.getSession(), deployRequest);
            } catch (DeploymentException e) {
                throw new ArtifactDeployerException("Unable to deploy artifacts", e);
            }
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver.java

                ArtifactVersion version2 = node2.getArtifact().getSelectedVersion();
    
                return version1.compareTo(version2) <= 0 ? node1 : node2;
            } catch (OverConstrainedVersionException exception) {
                // TODO log message or throw exception?
    
                return null;
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder.java

                                session, reactorContext, projectBuild.getProject(), taskSegment);
                        if (reactorBuildStatus.isHalted()) {
                            break;
                        }
                    } catch (Exception e) {
                        break; // Why are we just ignoring this exception? Are exceptions are being used for flow control
                    }
                }
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/harness/PomTestWrapper.java

            return context.getValue(expression) != null;
        }
    
        public Object getValue(String expression) {
            try {
                return context.getValue(expression);
            } catch (JXPathNotFoundException e) {
                return null;
            }
        }
    
        public boolean xPathExpressionEqualsValue(String expression, String value) {
            return context.getValue(expression) != null
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.1K bytes
    - Viewed (0)
Back to top