- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for BuildSummary (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java
import java.time.Duration; import java.util.Objects; import org.apache.maven.project.MavenProject; /** * Summarizes the result of a project build in the reactor. * */ public abstract class BuildSummary { /** * The project being summarized. */ private final MavenProject project; /** * The build time of the project in milliseconds. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionResult.java
@Override public boolean hasExceptions() { return !getExceptions().isEmpty(); } @Override public BuildSummary getBuildSummary(MavenProject project) { return buildSummaries.get(project); } @Override public void addBuildSummary(BuildSummary summary) { buildSummaries.put(summary.getProject(), summary); } @Override public boolean canResume() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 17.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 15:40:45 UTC 2024 - 17.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java
*/ BuildSummary getBuildSummary(MavenProject project); /** * Add the specified build summary. * * @param summary The build summary to add, must not be {@code null}. */ void addBuildSummary(BuildSummary summary); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java
import java.time.Duration; import org.apache.maven.project.MavenProject; /** * Summarizes the result of a successful project build in the reactor. * */ public class BuildSuccess extends BuildSummary { /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
import java.time.Duration; import org.apache.maven.project.MavenProject; /** * Summarizes the result of a failed project build in the reactor. * */ public class BuildFailure extends BuildSummary { /** * The cause of the build failure. */ private final Throwable cause; /** * Creates a new build summary for the specified project. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 2.7K bytes - Viewed (0)