- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ProjectBuilderResult (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Result of a project build call. * * @since 4.0.0 */ @Experimental public interface ProjectBuilderResult extends Result<ProjectBuilderRequest> { /** * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
@Nonnull @Override public ProjectBuilderResult build(ProjectBuilderRequest request) throws ProjectBuilderException, IllegalArgumentException { InternalSession session = InternalSession.from(request.getSession()); return session.request(request, this::doBuild); } protected ProjectBuilderResult doBuild(ProjectBuilderRequest request)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Sep 13 09:44:11 UTC 2025 - 8.8K bytes - Viewed (0)