Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for runtimeOnly (0.14 sec)

  1. platforms/jvm/code-quality/build.gradle.kts

        implementation(project(":plugins-groovy"))
        compileOnly(project(":internal-instrumentation-api"))
    
        implementation(libs.groovyXml)
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":language-jvm"))
    
        testImplementation(project(":file-collections"))
        testImplementation(project(":plugins-java"))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/build.gradle.kts

            "StringCaseLocaleUsage", // 1 occurrences
            "ThreadLocalUsage", // 2 occurrences
        )
    }
    
    dependencies {
        shadedImplementation(libs.slf4jApi)
    
        runtimeOnly(project(":core-api"))
        implementation(project(":core"))
        implementation(project(":build-process-services"))
        implementation(project(":service-provider"))
    
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * Dependencies declared on this configuration are present only during runtime, are not
         * present during compilation, and are not exposed as part of the feature's API variant.
         *
         * @return The {@code runtimeOnly} configuration.
         */
        Configuration getRuntimeOnlyConfiguration();
    
        /**
         * Gets the dependency configuration for which to declare compile-only dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/build.gradle.kts

        implementation(project(":tooling-api"))
    
        api(libs.slf4jApi)
        implementation(libs.commonsLang)
        implementation(libs.ant)
        implementation(libs.commonsCompress)
    
        runtimeOnly(project(":java-compiler-plugin"))
    
        testImplementation(project(":base-services-groovy"))
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":platform-base")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         * that should only be found at runtime.
         *
         * @since 3.4
         */
        public static final String RUNTIME_ONLY_CONFIGURATION_NAME = "runtimeOnly";
    
        /**
         * The name of the runtime classpath configuration, used by a component to query its own runtime classpath.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

    apply plugin: 'java'
    
    repositories {
        maven { url '$mavenRepo.uri' }
    }
    
    dependencies {
        implementation 'org.gradle.test:implementation:1.2'
        compileOnly 'org.gradle.test:compileOnly:1.0'
        runtimeOnly 'org.gradle.test:runtime:1.1'
    }
    
    task checkCompileClasspath {
        def compileClasspath = configurations.compileClasspath
        def expectedFiles = provider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top