Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for runtimeOnly (0.26 sec)

  1. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(project(":resources-http"))
        // TODO - move the isolatable serializer to model-core to live with the isolatable infrastructure
        runtimeOnly(project(":workers"))
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(projects.io)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

            given:
            buildFile << """
                plugins {
                    id 'application'
                }
    
                dependencies {
                    runtimeOnly "com.h2database:h2:2.1.214"
                    implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
                    compileOnly "org.apache.commons:commons-lang3:3.12.0"
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/ide/base-ide-plugins/build.gradle.kts

        implementation(project(":logging-api"))
        implementation(project(":process-services"))
    
        implementation(libs.commonsLang)
        implementation(libs.guava)
    
        runtimeOnly(project(":dependency-management"))
        runtimeOnly(libs.groovy)
    
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/antlr/build.gradle.kts

        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
        compileOnly("antlr:antlr:2.7.7") {
            because("this dependency is downloaded by the antlr plugin")
        }
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":workers"))
    
        testImplementation(project(":base-services-groovy"))
        testImplementation(testFixtures(project(":core")))
        testImplementation(project(":file-collections"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/build.gradle.kts

        implementation(project(":scala"))
        implementation(project(":test-suites-base"))
        implementation(project(":war"))
    
        implementation(libs.commonsLang)
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":testing-base"))
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/build.gradle.kts

                java.lang.AssertionError: typeSig ERROR""")
        }
    
        runtimeOnly(libs.mavenResolverImpl) {
            because("For ApiMavenResolver. Implements maven-resolver-api")
        }
        runtimeOnly(libs.mavenResolverConnectorBasic) {
            because("For ApiMavenResolver. To use resolver transporters")
        }
        runtimeOnly(libs.mavenResolverTransportFile) {
            because("For ApiMavenResolver. To resolve file:// URLs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

                    dependencies {
                        api project(':b')
                        implementation project(':c')
                        compileOnly project(':d')
                        runtimeOnly project(':e')
                    }
                }
            """
    
            when:
            def ideaProject = withConnection { connection -> connection.getModel(IdeaProject) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/build.gradle

    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            // tag::version-catalogs-deps[]
            test {
                dependencies {
                    runtimeOnly libs.guava
                    implementation libs.commons.lang3
                    implementation.bundle(libs.bundles.groovy)
                }
            }
            // end::version-catalogs-deps[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/config-inject/build.gradle

        implementation "org.codehaus:groovy:groovy-all:2.4.15"
        implementation "commons-codec:commons-codec:1.2"
        testImplementation 'junit:junit:4.13'
        testImplementation 'org.testng:testng:6.4'
        runtimeOnly 'com.googlecode:reflectasm:1.01'
    
        <% if (dependencies) { dependencies.each { %>
            implementation "${it.shortNotation()}" <% } %>
        <% } %>
    }
    
    test {
        if (!JavaVersion.current().java8Compatible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/api/plugins/JavaLibraryDistributionIntegrationTest.groovy

            ${mavenCentralRepository()}
            dependencies {
                implementation 'commons-collections:commons-collections:3.2.2'
                api 'commons-cli:commons-cli:1.2'
                runtimeOnly 'commons-lang:commons-lang:2.6'
            }
            """
    
            when:
            run 'distZip'
    
            then:
            def expandDir = file('expanded')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top