Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for integTestImplementation (0.27 sec)

  1. platforms/jvm/language-groovy/build.gradle.kts

        testFixturesImplementation(libs.guava)
    
        integTestImplementation(testFixtures(project(":model-core")))
        integTestImplementation(libs.commonsLang)
        integTestImplementation(libs.javaParser) {
            because("The Groovy docs inspects the dependencies at compile time")
        }
        integTestImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/build.gradle.kts

        implementation(libs.slf4jApi)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(libs.servletApi)
    
        integTestImplementation(project(":enterprise-operations"))
        integTestImplementation(testFixtures(project(":build-cache")))
        integTestImplementation(libs.jetty)
    
        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
    - 1K bytes
    - Viewed (0)
  3. subprojects/composite-builds/build.gradle.kts

        testImplementation(testFixtures(project(":dependency-management")))
        testImplementation(testFixtures(project(":core")))
    
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":launcher"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/build.gradle.kts

        implementation(project(":problems-api"))
    
        testImplementation(testFixtures(project(":resources-http")))
    
        integTestImplementation(project(":base-services-groovy"))
        integTestImplementation(libs.jetbrainsAnnotations)
        integTestImplementation(libs.groovyTest)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-custom/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::delegated-properties[]
    val db by configurations.creating
    val integTestImplementation by configurations.creating {
        extendsFrom(configurations["testImplementation"])
    }
    
    dependencies {
        db("org.postgresql:postgresql")
        integTestImplementation("com.example:integ-test-support:1.3")
    }
    // end::delegated-properties[]
    
    // tag::string-reference[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 696 bytes
    - Viewed (0)
  6. subprojects/build-events/build.gradle.kts

        testImplementation(project(":model-core"))
    
        integTestImplementation(project(":logging")) {
            because("This isn't declared as part of integtesting's API, but should be as logging's classes are in fact visible on the API")
        }
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":enterprise-operations"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-custom/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    // tag::custom[]
    configurations {
        db
        integTestImplementation {
            extendsFrom testImplementation
        }
    }
    
    dependencies {
        db 'org.postgresql:postgresql'
        integTestImplementation 'com.example:integ-test-support:1.3'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 288 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
        integTestImplementation(libs.mockitoKotlin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/plugins-version-catalog/build.gradle.kts

        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":core")))
        integTestImplementation(testFixtures(project(":jvm-services")))
        integTestImplementation(testFixtures(project(":resources-http")))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/build.gradle.kts

        testImplementation(testFixtures(project(":language-native")))
        testImplementation(testFixtures(project(":version-control")))
    
        integTestImplementation(project(":native"))
        integTestImplementation(libs.commonsIo)
        integTestImplementation(libs.jgit)
    
        testFixturesApi(testFixtures(project(":ide")))
        testFixturesImplementation(libs.plist)
        testFixturesImplementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top