Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BuildResumptionPersistenceException (0.25 sec)

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

    /**
     * This exception will be thrown when something fails while persisting build resumption data.
     * @see BuildResumptionDataRepository#persistResumptionData
     */
    public class BuildResumptionPersistenceException extends Exception {
        public BuildResumptionPersistenceException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

         * @param buildResumptionData Information needed to resume the build.
         * @throws BuildResumptionPersistenceException When an error occurs while persisting data.
         */
        void persistResumptionData(MavenProject rootProject, BuildResumptionData buildResumptionData)
                throws BuildResumptionPersistenceException;
    
        /**
         * Uses previously stored resumption data to enrich an existing execution request.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

        @Override
        public void persistResumptionData(MavenProject rootProject, BuildResumptionData buildResumptionData)
                throws BuildResumptionPersistenceException {
            Properties properties = convertToProperties(buildResumptionData);
    
            Path resumeProperties = Paths.get(rootProject.getBuild().getDirectory(), RESUME_PROPERTIES_FILENAME);
            try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

    import org.apache.maven.artifact.ArtifactUtils;
    import org.apache.maven.execution.BuildResumptionAnalyzer;
    import org.apache.maven.execution.BuildResumptionDataRepository;
    import org.apache.maven.execution.BuildResumptionPersistenceException;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    import org.apache.maven.execution.ExecutionEvent;
    import org.apache.maven.execution.MavenExecutionRequest;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top