Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for compileJava (0.11 seconds)

  1. benchmarks/build.gradle

    }
    
    // enable the JMH's BenchmarkProcessor to generate the final benchmark classes
    // needs to be added separately otherwise Gradle will quote it and javac will fail
    tasks.named("compileJava").configure {
      options.compilerArgs.addAll(["-processor", "org.openjdk.jmh.generators.BenchmarkProcessor"])
    }
    
    tasks.register('copyExpression', Copy) {
      dependsOn configurations.expression
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  2. docs/changelogs/upgrading_to_okhttp_4.md

    plugins respectively.
    
    ```groovy
    compileKotlin {
      kotlinOptions {
        jvmTarget = "1.8"
      }
    }
    compileTestKotlin {
      kotlinOptions {
        jvmTarget = "1.8"
      }
    }
    
    compileJava {
      sourceCompatibility = JavaVersion.VERSION_1_8
      targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    android {
      compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Click Count (0)
  3. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.java.JavaIDETaskExecutionPerformanceTest.run compileJava via Tooling API",
        "groups" : [ {
          "testProject" : "largeAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        }, {
          "testProject" : "largeJavaMultiProject",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  4. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 1018
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIDETaskExecutionPerformanceTest.run compileJava via Tooling API",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 1351
      }, {
        "testProject" : "largeJavaMultiProject",
        "linux" : 734
      }, {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/ElasticsearchJavaPluginFuncTest.groovy

            BuildParams.init { it.setMinimumRuntimeVersion(JavaVersion.VERSION_1_10) }
    
            apply plugin:'elasticsearch.java'
    
            assert compileJava.sourceCompatibility == JavaVersion.VERSION_1_10.toString()
            assert compileJava.targetCompatibility == JavaVersion.VERSION_1_10.toString()
            """
    
            then:
            gradleRunner("help").build()
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  6. samples/guide/build.gradle.kts

      implementation(projects.okhttpTls)
      implementation(libs.animalsniffer.annotations)
      implementation(libs.square.moshi)
      implementation(libs.square.okio.fakefilesystem)
      ksp(libs.square.moshi.compiler)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 569 bytes
    - Click Count (0)
  7. samples/crawler/build.gradle.kts

      application
    }
    
    application {
      mainClass.set("okhttp3.sample.Crawler")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(libs.jsoup)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 335 bytes
    - Click Count (0)
  8. samples/static-server/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("okhttp.jvm-conventions")
      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
      id("com.gradleup.shadow")
    }
    
    tasks.compileJava {
      options.isWarnings = false
    }
    
    tasks.jar {
      manifest {
        attributes("Main-Class" to "okhttp3.sample.SampleServer")
      }
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
    }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 439 bytes
    - Click Count (0)
  9. samples/compare/build.gradle.kts

      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.http.client5)
      testImplementation(libs.jetty.client)
      testImplementation(libs.junit)
      testImplementation(libs.assertk)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 576 bytes
    - Click Count (0)
  10. samples/tlssurvey/build.gradle.kts

      implementation(libs.square.retrofit.converter.moshi)
      implementation(libs.square.moshi)
      implementation(libs.square.moshi.kotlin)
    
      ksp(libs.square.moshi.compiler)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 636 bytes
    - Click Count (0)
Back to Top