Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for results (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

            if (!result.hasExceptions()) {
                return Optional.empty();
            }
    
            List<MavenProject> sortedProjects = result.getTopologicallySortedProjects();
    
            boolean hasNoSuccess =
                    sortedProjects.stream().noneMatch(project -> result.getBuildSummary(project) instanceof BuildSuccess);
    
            if (hasNoSuccess) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                RepositorySystemSession repositorySystemSession,
                MavenExecutionRequest request,
                MavenExecutionResult result) {
            this.container = null;
            this.request = requireNonNull(request);
            this.result = requireNonNull(result);
            this.settings = adaptSettings(request);
            this.repositorySystemSession = requireNonNull(repositorySystemSession);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            MojoExecution exec = newMojoExecution(session);
    
            Object result =
                    new PluginParameterExpressionEvaluatorV4(session, null, exec).evaluate("${mojo.plugin.descriptor}");
    
            System.out.println("Result: " + result);
    
            assertSame(
                    exec.getPlugin().getDescriptor(),
                    result,
                    "${mojo.plugin.descriptor} expression does not return plugin descriptor.");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

                }
    
                while (sb.length() < remainder) {
                    sb.append(' ');
                }
                result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
            }
            // last line
            sb.setLength(0);
            repeat(sb, BOX_CHAR, size);
            result.add(sb.toString());
            return result;
        }
    
        private static void repeat(StringBuilder sb, char c, int nb) {
            for (int i = 0; i < nb; i++) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Feb 07 20:55:12 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

        }
    
        DefaultModelBuilderResult(ModelBuilderResult result) {
            this();
            this.activeExternalProfiles.addAll(result.getActiveExternalProfiles());
            this.effectiveModel = result.getEffectiveModel();
            this.fileModel = result.getFileModel();
            this.problems.addAll(result.getProblems());
    
            for (String modelId : result.getModelIds()) {
                this.modelIds.add(modelId);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            } catch (CyclicDependencyException e) {
                result.addCircularDependencyException(e);
    
                return result;
            } catch (OverConstrainedVersionException e) {
                result.addVersionRangeViolation(e);
    
                return result;
            }
    
            ManagedVersionMap versionMap = getManagedVersionsMap(originatingArtifact, managedVersions);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            MojoExecution result = new MojoExecution(plugin, goal, executionId);
            result.setConfiguration(new XmlNodeImpl(executionId + "-" + goal));
            result.setMojoDescriptor(mojoDescriptor);
            result.setLifecyclePhase(mojoDescriptor.getPhase());
    
            return result;
        }
    
        public static MojoDescriptor createMojoDescriptor(String phaseName) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

            ArtifactResolutionResult result = new ArtifactResolutionResult();
    
            if (request.isResolveRoot()) {
                try {
                    resolve(request.getArtifact(), request);
                    result.addArtifact(request.getArtifact());
                } catch (IOException e) {
                    result.addMissingArtifact(request.getArtifact());
                }
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java

                throws ProjectBuildingException {
            ProjectBuildingResult result = super.build(pomFile, configuration);
    
            result.getProject().setRemoteArtifactRepositories(Collections.<ArtifactRepository>emptyList());
    
            return result;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

            BuilderCommon.attachToThread(mavenProject);
    
            List<ExecutionPlanItem> result = new ArrayList<>();
            for (MojoExecution mojoExecution : executions) {
                result.add(new ExecutionPlanItem(mojoExecution));
            }
            return result;
        }
    
        public MojoExecution getMojoExecution() {
            return mojoExecution;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top