Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for Toolchains (0.12 sec)

  1. guava-gwt/pom.xml

        </dependency>
      </dependencies>
      <build>
        <plugins>
          <plugin>
            <groupId>org.mvnsearch</groupId>
            <artifactId>toolchains-maven-plugin</artifactId>
          </plugin>
          <plugin>
            <artifactId>maven-toolchains-plugin</artifactId>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/toolchain/Toolchain.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    /**
     * Toolchain interface.
     *
     * @since 2.0.9
     * @deprecated Use {@link org.apache.maven.api.Toolchain} instead.
     */
    @Deprecated(since = "4.0.0")
    public interface Toolchain {
    
        /**
         * get the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Feb 12 13:13:28 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.19.md

        - Includes:
          - bazelbuild/bazel-toolchains@3.3.2
          - bazelbuild/rules_go@v0.22.7 ([#93088](https://github.com/kubernetes/kubernetes/pull/93088), [@justaugustus](https://github.com/justaugustus)) [SIG Release and Testing]
    - Update Golang to v1.14.6
      - Update repo-infra to 0.0.8 (to support go1.14.6 and go1.13.14)
        - Includes:
          - bazelbuild/bazel-toolchains@3.4.0
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java

     * based on toolchain model configurations or default settings.</p>
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface ToolchainFactory {
        /**
         * Creates a toolchain instance from the provided model configuration.
         *
         * @param model The toolchain configuration model
         * @return A configured toolchain instance
         * @throws ToolchainFactoryException if toolchain creation fails
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchain.java

     * under the License.
     */
    package org.apache.maven.toolchain.java;
    
    import org.apache.maven.toolchain.Toolchain;
    
    /**
     * JDK toolchain interface.
     *
     * @since 2.0.9, renamed from JavaToolChain in 3.2.4
     * @deprecated Use {@link org.apache.maven.api.JavaToolchain} instead.
     */
    @Deprecated(since = "4.0.0")
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

            assertFalse(toolchain.matchesRequirements(Collections.singletonMap("name", "John Doe")));
            verify(logger).debug("Toolchain {} is missing required property: {}", toolchain, "name");
        }
    
        @Test
        void testNonMatchingRequirementProperty() {
            ToolchainModel model = new ToolchainModel();
            model.setType("TYPE");
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

     * under the License.
     */
    package org.apache.maven.toolchain.java;
    
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.Map.Entry;
    import java.util.Properties;
    
    import org.apache.maven.toolchain.MisconfiguredToolchainException;
    import org.apache.maven.toolchain.RequirementMatcher;
    import org.apache.maven.toolchain.RequirementMatcherFactory;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Properties;
    
    import org.apache.maven.toolchain.model.ToolchainModel;
    import org.slf4j.Logger;
    
    /**
     * Default abstract toolchain implementation, to be used as base class for any toolchain implementation
     * to avoid rewriting usual code.
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Feb 12 13:13:28 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactoryException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    /**
     * Exception thrown when toolchain factory operations fail.
     *
     * <p>This exception wraps errors that occur during toolchain creation or initialization.</p>
     */
    public class ToolchainFactoryException extends MavenException {
    
        public ToolchainFactoryException(String message) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.toolchain.java;
    
    import org.apache.maven.toolchain.model.ToolchainModel;
    import org.slf4j.Logger;
    
    /**
     * Provides backwards compatibility with Maven 3.2.3 and earlier. Clients that do not require compatibility with Maven
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top