Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 569 for transitive1 (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            // 'direct1' 'transitive1' and 'child-transitive1' are found in 'maven1'
            mavenHttpRepo.module('org.foo', 'transitive1').publish().allowAll()
            mavenHttpRepo.module('org.foo', 'direct1').publish().allowAll()
            mavenHttpRepo.module('org.foo', 'child-transitive1').publish().allowAll()
    
            // 'direct2' 'transitive2', and 'child-transitive2' are found in 'maven2' (unpublished in 'maven1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                }
            }
        }
    
        def "substitutes external dependency with subproject dependency that has transitive dependencies"() {
            given:
            def transitive1 = mavenRepo.module("org.test", "transitive1").publish()
            mavenRepo.module("org.test", "transitive2").dependsOn(transitive1).publish()
            buildA.buildFile << """
                dependencies {
                    implementation "org.test:buildB:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "builds IDEA metadata with substituted subproject dependency that has transitive dependencies"() {
            given:
            def transitive1 = mavenRepo.module("org.test", "transitive1").publish()
            mavenRepo.module("org.test", "transitive2").dependsOn(transitive1).publish()
    
            dependency "org.test:buildB:1.0"
            apiDependency(buildB, "org.test:transitive2:1.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                .dependsOn("org", "transitive", "1.0")
                .publish()
            def bar = mavenHttpRepo.module('org', 'bar', '1.0')
                .dependsOn("org", "transitive", "1.1")
                .publish()
            def transitive10 = mavenHttpRepo.module('org', 'transitive', '1.0').publish()
            def transitive11 = mavenHttpRepo.module('org', 'transitive', '1.1').publish()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    [[sec:adding-constraints-transitive-deps]]
    == Adding constraints on transitive dependencies
    
    Dependency constraints allow you to define the version or the version range of both dependencies declared in the build script and transitive dependencies.
    It is the preferred method to express constraints that should be applied to all dependencies of a configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     *         Jar component:
     *         <ul>
     *             <li>{@code external} indicates that transitive dependencies are themselves component jars</li>
     *             <li>{@code embedded} indicates that transitive dependencies have been included inside the component jar, without modifying their packages</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

         * only the self resolving dependencies of the project configuration which are no project dependencies are resolved. If transitive
         * is set to true, other project dependencies belonging to the configuration of the resolved project dependency are
         * resolved recursively.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

                    }
                """
    
                file("transitive/build.gradle") << """
                    plugins {
                        id 'java-library'
                        id 'org.jetbrains.kotlin.jvm' version '$kotlinVersion'
                    }
                """
                file("transitive/src/main/java/transitive/Powerize.java").java """
                    package transitive;
    
                    public class Powerize {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

                // Develocity plugin is auto-applied but the Gradle Enterprise plugin is a transitive dependency
                gradleEnterpriseFixture
            }
    
            @Override
            void assertNotAutoApplied(String output) {
                // Develocity plugin is applied neither as a transitive dependency, nor via auto-application mechanism as Gradle Enterprise plugin is present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top