Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for toolChain (0.2 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - static library 'hello:staticLibrary':
          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    ====
    include::sample[dir="snippets/java/toolchain-basic/kotlin",files="build.gradle.kts[tags=toolchain]"]
    include::sample[dir="snippets/java/toolchain-basic/groovy",files="build.gradle[tags=toolchain]"]
    ====
    
    You can learn more about this in the <<toolchains.adoc#toolchains,Java toolchains>> guide.
    
    [[sec:compiling_with_release]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  3. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withBinding("packageNameChoice", packageNameChoice)
                .withBinding("subprojectName", settings.subprojects.first())
                .withBinding("toolChain", toolChain)
                .withBinding("exampleClass", exampleClass)
                .withBinding("sourceFile", sourceFile)
                .withBinding("testSourceFile", testSourceFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pom.xml

        <module>maven-slf4j-wrapper</module>
        <module>maven-embedder</module>
        <module>maven-compat</module>
        <module>apache-maven</module>
        <module>maven-toolchain-model</module>
        <module>maven-toolchain-builder</module>
        <module>maven-bom</module>
      </modules>
    
      <scm>
        <connection>scm:git:https://gitbox.apache.org/repos/asf/maven.git</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    <<toolchains.adoc#toolchains, Java toolchain>> to be used by tasks using JVM tools, such as compilation and execution. Default value: build JVM toolchain.
    
    `link:{javadocPath}/org/gradle/api/JavaVersion.html[JavaVersion] sourceCompatibility`::
    Java version compatibility to use when compiling Java source. Default value: language version of the toolchain from this extension. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    
        // This dependency is used by the application.
        implementation(libs.guava)
    }
    
    // Apply a specific Java toolchain to ease working on different environments.
    java {
        toolchain {
            languageVersion.set(JavaLanguageVersion.of(11))
        }
    }
    
    application {
        // Define the main class for the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

    #
    # We can't test on the windows toolchains because they're using a legacy
    # toolchain format (or something) that specifies the toolchain directly instead
    # of as a "repository". They can't be valid on Linux because Linux can't do
    # anything with a Windows-only toolchain, and bazel errors if trying to build
    # that directory.
    @test "bazel nobuild passes on all of TF except TF Lite and win toolchains" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

     */
    """)
        }
    
        def "generates toolchain entry"() {
            when:
            builder.javaToolchainFor(JavaLanguageVersion.of(11))
            builder.create(target).generate()
    
            then:
            assertOutputFile("""$COMMON_START
     */
    
    // Apply a specific Java toolchain to ease working on different environments.
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
        implementation(libs.guava)                                      // <4>
    }
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)                // <5>
        }
    }
    
    application {
        mainClass = "org.example.App"                                   // <6>
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.internal.resource.TextUriResourceLoader$Factory> is not annotated with @ServiceScope in (TextUriResourceLoader.java:0)
    Class <org.gradle.jvm.toolchain.JavaToolchainService> is not annotated with @ServiceScope in (JavaToolchainService.java:0)
    Class <org.gradle.jvm.toolchain.internal.DefaultJvmToolchainManagement> is not annotated with @ServiceScope in (DefaultJvmToolchainManagement.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top