Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for BuildResumptionData (0.06 seconds)

  1. impl/maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            MavenProject projectB = createFailedMavenProject("B");
            executionResult.setTopologicallySortedProjects(asList(projectA, projectB));
    
            Optional<BuildResumptionData> result = analyzer.determineBuildResumptionData(executionResult);
    
            assertTrue(result.isPresent(), "Expected " + result + ".isPresent() to return true");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java

    public interface BuildResumptionAnalyzer {
        /**
         * Construct an instance of {@link BuildResumptionData} based on the outcome of the current Maven build.
         * @param result Outcome of the current Maven build.
         * @return A {@link BuildResumptionData} instance or {@link Optional#empty()} if resuming the build is not possible.
         */
        Optional<BuildResumptionData> determineBuildResumptionData(MavenExecutionResult result);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 1.4K bytes
    - Click Count (0)
Back to Top