Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for runtimeOnly (0.49 sec)

  1. testing/performance/src/templates/kts-project-with-source/build.gradle.kts

        implementation("commons-codec:commons-codec:1.2")
        implementation("org.slf4j:jcl-over-slf4j:1.7.10")
        implementation("org.codehaus.groovy:groovy:2.4.15")
        testImplementation("junit:junit:4.13")
        runtimeOnly("com.googlecode:reflectasm:1.01")
    }
    
    (tasks.getByName("test") as Test).apply {
        if (!JavaVersion.current().isJava8Compatible) {
            jvmArgs("-XX:MaxPermSize=512m")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            // tag::version-catalogs-deps[]
            val test by getting(JvmTestSuite::class) {
                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)
  3. platforms/jvm/war/build.gradle.kts

        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":plugins-java"))
        implementation(project(":plugins-jvm-test-suite"))
    
        runtimeOnly(project(":testing-base"))
    
    
        testImplementation(project(":plugins-java-base"))
        testImplementation(testFixtures(project(":core")))
        // TODO remove this
        testImplementation(project(":plugins-java-base"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

                plugins {
                    java
                    `kotlin-dsl` apply false
                }
    
                dependencies {
                    "runtimeOnly"(project(":a"))
                    "runtimeOnly"(project(":b"))
                }
            """)
    
            // Duplication in build scripts to avoid Isolated Projects violations without introducing shared build logic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

                version = '1.9'
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation "commons-collections:commons-collections:3.2.2"
                    runtimeOnly "commons-io:commons-io:1.4"
                }
    
                publishing {
                    repositories {
                        ivy {
                            url '${ivyRepo.uri}'
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

            }
    
            named("jvmTest") {
                dependencies {
                    implementation(kotlin("test-junit5"))
                    implementation("org.junit.jupiter:junit-jupiter:5.10.1")
                    runtimeOnly("org.junit.platform:junit-platform-launcher")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/api/plugins/BuildSrcPluginIntegrationTest.groovy

            file("buildSrc/settings.gradle") << "include 'testplugin'"
    
            file("buildSrc/build.gradle") << """
                apply plugin: "groovy"
                dependencies {
                    runtimeOnly project(":testplugin")
                }
            """
    
            file("buildSrc/testplugin/build.gradle") << """
                apply plugin: "groovy"
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/build.gradle.kts

        implementation(project(":file-collections"))
        implementation(project(":model-core"))
        implementation(project(":platform-base"))
    
        implementation(libs.commonsLang)
    
        runtimeOnly(libs.groovy)
    
        testImplementation(testFixtures(project(":core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/build.gradle.kts

        implementation(project(":maven"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":publish"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":dependency-management")))
        integTestImplementation(testFixtures(project(":resources-http")))
    
        testImplementation(project(":language-java")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

            substitute module('org.test:replaced:1.0') using project(':child2')
        }
    }
    project(':child2') {
        apply plugin: 'java'
        dependencies {
            implementation 'org.test:m1:1.0'
            runtimeOnly 'org.test:m2:1.0'
            compileOnly 'org.test.ignore-me:1.0'
            testImplementation 'org.test.ignore-me:1.0'
            testRuntimeOnly 'org.test.ignore-me:1.0'
        }
    }
    """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top