Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for resolveClass (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                toolchainManagement {
                    jvm {
                        javaRepositories {
                            repository('custom') {
                                resolverClass = FakeResolver
                            }
                        }
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                        toolchainManagement {
                            jvm {
                                javaRepositories {
                                    repository('custom') {
                                        resolverClass = CustomToolchainResolver
                                        credentials {
                                            username "user"
                                            password "password"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiKotlinIntegrationTest.groovy

                toolchainManagement {
                    jvm {
                        javaRepositories {
                            repository("custom") {
                                resolverClass.set(CustomToolchainResolver::class.java)
                            }
                        }
                    }
                }
            """
    
            buildKotlinFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    ====
    <1> In the `toolchainManagement` block, the `jvm` block contains configuration for Java toolchains.
    <2> The `javaRepositories` block defines named Java toolchain repository configurations.
    Use the `resolverClass` property to link these configurations to plugins.
    <3> Toolchain declaration order matters.
    Gradle downloads from the first repository that provides a match, starting with the first repository in the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top