Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for runtimeOnly (0.56 seconds)

  1. benchmarks/build.gradle

      api "org.openjdk.jmh:jmh-core:$versions.jmh"
      annotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:$versions.jmh"
      // Dependencies of JMH
      runtimeOnly 'net.sf.jopt-simple:jopt-simple:4.6'
      runtimeOnly 'org.apache.commons:commons-math3:3.2'
    }
    
    // enable the JMH's BenchmarkProcessor to generate the final benchmark classes
    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. build-tools-internal/build.gradle

      api "org.apache.httpcomponents:httpcore:${props.getProperty('httpcore')}"
      compileOnly "com.puppycrawl.tools:checkstyle:${props.getProperty('checkstyle')}"
      runtimeOnly "org.elasticsearch.gradle:reaper:$version"
      testImplementation "com.puppycrawl.tools:checkstyle:${props.getProperty('checkstyle')}"
      testImplementation "junit:junit:${props.getProperty('junit')}"
    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. CONTRIBUTING.md

    <dt>`api`</dt><dd>Dependencies that are used as compile and runtime dependencies of a project
     and are considered part of the external api of the project.
    <dt>`runtimeOnly`</dt><dd>Dependencies that not on the classpath at compile time but
    are on the classpath at runtime. We mostly use this configuration to make sure that
    we do not accidentally compile against dependencies of our dependencies also
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 07:32:01 GMT 2021
    - 36.5K bytes
    - Click Count (0)
Back to Top