- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getEffectiveToolchains (0.08 sec)
-
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
assertNotNull(result.getEffectiveToolchains()); assertEquals(1, result.getEffectiveToolchains().getToolchains().size()); assertEquals( "TYPE", result.getEffectiveToolchains().getToolchains().get(0).getType()); assertEquals( "user_value", result.getEffectiveToolchains() .getToolchains()
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 14K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java
@Deprecated(since = "4.0.0") public interface ToolchainsBuildingResult { /** * Gets the assembled toolchains. * * @return The assembled toolchains, never {@code null}. */ PersistedToolchains getEffectiveToolchains(); /** * Return a list of problems, if any. * * @return a list of problems, never {@code null}. */ List<Problem> getProblems();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 05 09:37:42 UTC 2025 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java
/** * Gets the assembled toolchains. * * @return the assembled toolchains, never {@code null} */ @Nonnull PersistedToolchains getEffectiveToolchains(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severityRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingResult.java
this.effectiveToolchains = effectiveToolchains; this.problems = (problems != null) ? problems : new ArrayList<>(); } @Override public PersistedToolchains getEffectiveToolchains() { return effectiveToolchains; } @Override public List<Problem> getProblems() { return problems; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 05 09:37:42 UTC 2025 - 2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
context.lookup.lookup(ToolchainsBuilder.class).build(toolchainsRequest); context.eventSpyDispatcher.onEvent(toolchainsResult); context.effectiveToolchains = toolchainsResult.getEffectiveToolchains(); if (toolchainsResult.getProblems().hasWarningProblems()) { int totalProblems = toolchainsResult.getProblems().totalProblemsReported(); context.logger.info("");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
eventSpyDispatcher.onEvent(toolchainsResult); executionRequestPopulator.populateFromToolchains(cliRequest.request, toolchainsResult.getEffectiveToolchains()); if (!toolchainsResult.getProblems().isEmpty() && slf4jLogger.isWarnEnabled()) { slf4jLogger.warn("");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)