Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for toolchains (0.31 sec)

  1. apache-maven/src/assembly/maven/conf/toolchains.xml

      xsi:schemaLocation="http://maven.apache.org/TOOLCHAINS/1.1.0 http://maven.apache.org/xsd/toolchains-1.1.0.xsd">
    
      <!--
       | With toolchains you can refer to installations on your system. This
       | way you don't have to hardcode paths in your pom.xml.
       |
       | Every toolchain consist of 3 elements:
       | * type: the type of tool. An often used value is 'jdk'. Toolchains-aware
       |   plugins should document which type you must use.
       |
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  2. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

      xml.namespace="http://maven.apache.org/TOOLCHAINS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/toolchains-${version}.xsd">
      <id>toolchains</id>
      <name>MavenToolchains</name>
      <description><![CDATA[
        This is a reference for the Maven Toolchains descriptor.
        <p>The default location for the toolchains file is {@code ~/.m2/toolchains.xml}
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultToolchainManager.java

        }
    
        private Toolchain toToolchain(org.apache.maven.toolchain.Toolchain toolchain) {
            return new ToolchainWrapper(toolchain);
        }
    
        private static class ToolchainWrapper implements Toolchain {
            private final org.apache.maven.toolchain.Toolchain toolchain;
    
            ToolchainWrapper(org.apache.maven.toolchain.Toolchain toolchain) {
                this.toolchain = toolchain;
            }
    
            @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManager.java

         * @return the toolchain selected by <code>maven-toolchains-plugin</code>
         */
        Toolchain getToolchainFromBuildContext(String type, MavenSession context);
    
        /**
         * Select all toolchains available in user settings matching the type and requirements,
         * independently from <code>maven-toolchains-plugin</code>.
         *
         * @param session the Maven session, must not be {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  5. api/maven-api-toolchain/src/site/apt/index.apt

     -----
     2006-11-04
     -----
    
    Maven 4 API - Immutable Toolchains Model
    
     This is strictly the immutable model for Maven toolchains in <<<org.apache.maven.api.toolchain>>> package.
    
     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with <<<Builder>>> inner classes for immutable instances creation.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Dec 31 16:32:07 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Component for use by the <code>maven-toolchains-plugin</code> only.
     * It provides API: <ol>
     * <li>to retrieve every toolchains available in user settings,</li>
     * <li>to store chosen toolchain into build context for later use by toolchain-aware plugins.</li>
     * </ol>
     *
     * @since 2.0.9
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/index.apt

    * Toolchains
    
     * {{{./toolchains.html}Toolchains descriptor reference}},
    
     * public API for toolchains-aware plugins: <<<ToolchainManager>>> component ({{{./apidocs/org/apache/maven/toolchain/ToolchainManager.html}javadoc}})
     with its <<<DefaultToolchainManager>>> implementation ({{{./xref/org/apache/maven/toolchain/DefaultToolchainManager.html}source}}),
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java

        /**
         * Builds the toolchains model from the configured toolchain files.
         *
         * @param userToolchainsFile The path to the toolchains file, may be <code>null</code> to disable parsing.
         * @return The toolchains model or <code>null</code> if no toolchain file was configured or the configured file does
         *         not exist.
         * @throws MisconfiguredToolchainException If the toolchain file exists but cannot be parsed.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

                            ToolchainPrivate toolchain = fact.createToolchain(model);
                            if (requirements == null || toolchain.matchesRequirements(requirements)) {
                                toolchains.add(toolchain);
                            }
                        } catch (MisconfiguredToolchainException ex) {
                            logger.error("Misconfigured toolchain.", ex);
                        }
                    }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Builds the effective toolchains from a user toolchains file and/or a global toolchains file.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilder extends Service {
    
        /**
         * Builds the effective toolchains for the specified toolchains files.
         *
         * @param request the toolchains building request that holds the parameters, must not be {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.5K bytes
    - Viewed (0)
Back to top