Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 231 - 234 of 234 for gradlebuild (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. settings.gradle.kts

    include(":mockwebserver-junit5")
    project(":mockwebserver-junit5").name = "mockwebserver3-junit5"
    
    val androidBuild: String by settings
    val graalBuild: String by settings
    val loomBuild: String by settings
    
    if (androidBuild.toBoolean()) {
      include(":regression-test")
    }
    
    if (graalBuild.toBoolean()) {
      include(":native-image-tests")
    }
    
    include(":okcurl")
    include(":okhttp")
    include(":okhttp-bom")
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  2. build-tools-internal/build.gradle

    configurations {
      integTestRuntimeOnly.extendsFrom(testRuntimeOnly)
    }
    dependencies {
      api localGroovy()
      api gradleApi()
    
      api "org.elasticsearch:build-conventions:$version"
      api "org.elasticsearch.gradle:build-tools:$version"
    
      api 'commons-codec:commons-codec:1.12'
      api 'org.apache.commons:commons-compress:1.19'
      api 'org.apache.ant:ant:1.10.8'
      api 'com.netflix.nebula:gradle-extra-configurations-plugin:5.0.1'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  3. gradle.properties

    org.gradle.isolated-projects=true
    
    android.useAndroidX=true
    kotlin.mpp.applyDefaultHierarchyTemplate=false
    
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    okhttpModuleTests=false
    okhttpDokka=false
    
    # Increase heap and metaspace to reduce GC pressure when loading 30+ plugin classpaths
    org.gradle.jvmargs=-Dfile.encoding=UTF-8
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 08:47:08 GMT 2026
    - 718 bytes
    - Click Count (0)
  4. BUILDING.md

    - `elasticsearch.testclusters` - A gradle plugin for setting up es clusters for testing within a build.
    
    This project is published as part of the elasticsearch release and accessible by
    `org.elasticsearch.gradle:build-tools:<versionNumber>`.
    These build tools are also used by the `elasticsearch-hadoop` project maintained by elastic.
    
    ### `build-tools-internal`
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 23 07:45:59 GMT 2021
    - 6.7K bytes
    - Click Count (0)
Back to Top