Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 405 for distributionId (0.21 sec)

  1. subprojects/core/build.gradle.kts

        integTestImplementation(testFixtures(project(":file-temp")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("This is required by ProjectBuilder, but ProjectBuilder cannot declare :distributions-core as a dependency due to conflicts with other distributions.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/test-suites-base/build.gradle.kts

        testImplementation(testFixtures(project(":messaging")))
        testImplementation(testFixtures(project(":platform-base")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  3. platforms/native/platform-native/build.gradle.kts

        testImplementation(testFixtures(project(":snapshots")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
            because("Required 'ideNative' to test visual studio project file generation for generated sources")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/build.gradle.kts

        testFixturesImplementation(project(":core-api"))
        testFixturesImplementation(project(":base-services"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    
        integTestImplementation(testFixtures(project(":language-groovy")))
        integTestImplementation(libs.jsoup) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/build.gradle.kts

        api(libs.guava)
        implementation(libs.slf4jApi)
    
        jmhImplementation(project(":base-services"))
        jmhImplementation(project(":native"))
        jmhImplementation(platform(project(":distributions-dependencies")))
        jmhImplementation(libs.aircompressor)
        jmhImplementation(libs.commonsCompress)
        jmhImplementation(libs.commonsIo)
        jmhImplementation(libs.jtar)
        jmhImplementation(libs.snappy)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/publish/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-junit-platform/build.gradle.kts

    We make sure to include this subproject as a runtime dependency in :distributions-core to ensure we include it with the Gradle distribution.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.testingBaseInfrastructure)
        api(projects.time)
        api(project(":base-services"))
        api(project(":messaging"))
        api(project(":testing-jvm-infrastructure"))
    
        api(libs.junitPlatform)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  8. platforms/native/language-native/build.gradle.kts

        integTestImplementation(libs.ant)
        integTestImplementation(libs.jgit)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/language/nativeplatform/internal/**")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/build.gradle.kts

        testFixturesImplementation(libs.guava)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/scala/build.gradle.kts

        testFixturesImplementation(testFixtures(project(":language-jvm")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    dependencyAnalysis {
        issues {
            onUsedTransitiveDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top