Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for runtimeOnly (0.26 sec)

  1. 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)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/LanguageLibraryProjectInitDescriptor.java

                        BuildInitDependency.of("org.scalatestplus:junit-4-13_" + scalaVersion, scalaTestPlusJunitVersion));
                    suiteSpec.runtimeOnly("Need scala-xml at test runtime", BuildInitDependency.of("org.scala-lang.modules:scala-xml_" + scalaVersion, scalaXmlVersion));
                    return suiteSpec;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishWarProjectIntegTest.groovy

                version = '1.9'
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation "commons-collections:commons-collections:3.2.2"
                    runtimeOnly "commons-io:commons-io:1.4"
                    testRuntimeOnly "junit:junit:4.13"
                }
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.3K 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)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    However, resolving the `runtimeClasspath` configuration would instead return `groovy 3.0.2`.
    
    The reason for this is that a transitive dependency of `vertx`, which is a `runtimeOnly` dependency, brings a higher version of `groovy`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top