Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 21 for adoptium (0.18 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

             *
             * For Oracle/OpenJDK/Adoptium we define a repository per-version.
             */
            String repoName = REPO_NAME_PREFIX + jdk.getVendor() + "_" + jdk.getVersion();
            String repoUrl;
            String artifactPattern;
    
            if (jdk.getVendor().equals(VENDOR_ADOPTIUM)) {
                repoUrl = "https://api.adoptium.net/v3/binary/version/";
                if (jdk.getMajor().equals("8")) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  2. gradle/gradle-daemon-jvm.properties

    #This file is generated by updateDaemonJvm
    toolchainVendor=ADOPTIUM
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 88 bytes
    - Click Count (0)
  3. CONTRIBUTING.md

    ## Setting up your development environment
    
    In order to make changes to Gradle, you'll need:
    
    * [Adoptium JDK](https://adoptium.net/temurin/archive/?version=17) (Java Development Kit) **version 17**. Fixed version is required to use [remote cache](#remote-build-cache).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/common/JvmVendor.kt

     * limitations under the License.
     */
    
    package common
    
    enum class JvmVendor(
        val displayName: String,
    ) {
        ORACLE("Oracle"),
        OPENJDK("Adoptium"),
        ZULU("Zulu"),
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 755 bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java

    public class Jdk implements Buildable, Iterable<File> {
    
        private static final List<String> ALLOWED_ARCHITECTURES = List.of("aarch64", "x64");
        private static final List<String> ALLOWED_VENDORS = List.of("adoptium", "openjdk");
        private static final List<String> ALLOWED_PLATFORMS = List.of("darwin", "linux", "windows", "mac");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  6. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/JdkDownloadPluginFuncTest.groovy

            if (vendor.equals(VENDOR_ADOPTIUM)) {
                final String module = isMac(platform) ? "mac" : platform;
                return "/jdk-" + version + "/" + module + "/${arch}/jdk/hotspot/normal/adoptium";
            } else if (vendor.equals(VENDOR_OPENJDK)) {
                final String effectivePlatform = isMac(platform) ? "osx" : platform;
                final boolean isOld = version.equals(OPENJDK_VERSION_OLD);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 10.5K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

        private static final String SYSTEM_JDK_VENDOR = "openjdk";
        private static final String GRADLE_JDK_VERSION = "16.0.2+7";
        private static final String GRADLE_JDK_VENDOR = "adoptium";
    
        // all distributions used by distro tests. this is temporary until tests are per distribution
        private static final String EXAMPLE_PLUGIN_CONFIGURATION = "examplePlugin";
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
  8. 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) ?: ""
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 05:13:29 GMT 2026
    - 18K bytes
    - Click Count (0)
  9. architecture/standards/0007-java-pre-requisite.md

    There have been discussions on embedding a Java runtime in the Gradle distribution.
    This would allow users to run Gradle without having to install a Java runtime beforehand.
    This capability could help increase Gradle adoption outside of the JVM ecosystem.
    
    Gradle can be invoked in different ways:
    * Through the [Gradle Wrapper](https://docs.gradle.org/8.8/userguide/gradle_wrapper.html)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  10. architecture/standards/0008-use-nullaway.md

    Use `Objects.requireNonNull` statement or `Preconditions` rather than `assert` or `@SuppressWarning` annotation to suppress if possible.
    
    For gradual adoption, enable checks project-by-project.
    Do not rely on `@NullMarked` annotations.
    Only enable checks for a project if all its dependencies have checks enabled, in order to avoid back-and-forth when refining the annotations.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top