Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getToolchains (0.45 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                request.setRootDirectory(context.invokerRequest.topDirectory());
            }
    
            request.setToolchains(
                    Optional.ofNullable(context.effectiveToolchains).map(PersistedToolchains::getToolchains).stream()
                            .flatMap(List::stream)
                            .map(ToolchainModel::new)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return builderId;
        }
    
        @Override
        public Map<String, List<ToolchainModel>> getToolchains() {
            if (toolchains == null) {
                toolchains = new HashMap<>();
            }
            return toolchains;
        }
    
        @Override
        public MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains) {
            this.toolchains = toolchains;
            return this;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        Settings getSettings();
    
        /**
         * Retrieves toolchain models that have been explicitly configured.
         *
         * @return the toolchain models
         */
        @Nonnull
        Collection<ToolchainModel> getToolchains();
    
        /**
         * Retrieves the local repository associated with this session.
         *
         * @return the local repository instance
         */
        @Nonnull
        LocalRepository getLocalRepository();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top