Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for ADOPTIUM (0.25 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    configureSourcesVariant()
    configureTests()
    
    tasks.registerCITestDistributionLifecycleTasks()
    
    fun configureCompile() {
        java.toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    
        tasks.withType<JavaCompile>().configureEach {
            configureCompileTask(options)
            options.compilerArgs.add("-parameters")
        }
        tasks.withType<GroovyCompile>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val RUN_BROKEN_CONFIGURATION_CACHE_DOCS_TESTS = "runBrokenConfigurationCacheDocsTests"
    
        internal
        val VENDOR_MAPPING = mapOf(
            "oracle" to JvmVendorSpec.ORACLE,
            "openjdk" to JvmVendorSpec.ADOPTIUM,
            "zulu" to JvmVendorSpec.AZUL
        )
    }
    
    
    fun Project.stringPropertyOrEmpty(projectPropertyName: String): String =
        stringPropertyOrNull(projectPropertyName) ?: ""
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    . the installation currently running Gradle is preferred over any other
    . JDK installations are preferred over JRE ones
    . certain vendors take precedence over others; their ordering (from the highest priority to lowest):
    .. ADOPTIUM
    .. ADOPTOPENJDK
    .. AMAZON
    .. APPLE
    .. AZUL
    .. BELLSOFT
    .. GRAAL_VM
    .. HEWLETT_PACKARD
    .. IBM
    .. JETBRAINS
    .. MICROSOFT
    .. ORACLE
    .. SAP
    .. TENCENT
    .. everything else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    === Deprecations
    
    [[adoptopenjdk_download]]
    ==== AdoptOpenJDK toolchain download
    
    Following the move from AdoptOpenJDK to Adoptium, under the Eclipse foundation, it is no longer possible to download an AdoptOpenJDK build from their end point.
    Instead, an Eclipse Temurin or IBM Semeru build is returned.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top