- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for removeResumptionData (3.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java
/** * Removes previously stored resumption data. * @param rootProject The root project that is being built. */ void removeResumptionData(MavenProject rootProject);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java
Properties properties = loadResumptionFile(Paths.get(rootProject.getBuild().getDirectory())); applyResumptionProperties(request, properties); } @Override public void removeResumptionData(MavenProject rootProject) { Path resumeProperties = Paths.get(rootProject.getBuild().getDirectory(), RESUME_PROPERTIES_FILENAME); try { Files.deleteIfExists(resumeProperties);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 4.9K bytes - Viewed (0)