Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for transitive1 (0.15 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. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    - `(*)`: Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    - `(c)`: This element is a <<dependency_constraints.adoc#sec:direct-vs-transitive-deps,dependency constraint>>, not a dependency. Look for the matching dependency elsewhere in the tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    |`junit-jupiter-api`
    
    |Version
    |version # to import
    |`32.1.2-jre`
    |`5.9.1`
    |===
    
    == Step 3. Understanding Transitive Dependencies
    A _transitive dependency_ is a dependency of a dependency.
    
    For our `guava` dependency to work, it requires a library called `failureaccess`.
    Therefore `failureaccess` is a transitive dependency of the project.
    
    == Step 4. Viewing Project Dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

        //
        // or we can show it graphically as:
        //
        // p1 ---> p0 --> super model
        //
        // p1 has a depMgmt section that specifies versions 1.0 of jars "a" & "b"
        // jar "a" has a transitive dependency on 2.0 of jar "b", but maven should
        // prefer to use version 1.0.
        //
        // ----------------------------------------------------------------------
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        @Unroll("Selects direct=#expectedDirectVariant, transitive=[#expectedTransitiveVariantA, #expectedTransitiveVariantB], leaf=#expectedLeafVariant making sure dependency attribute value doesn't leak to transitives")
        def "Attribute value on dependency only affects selection of this dependency (using component metadata rules)"() {
            given:
            repository {
                def modules = ['direct', 'transitive', 'leaf']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    // go.mod file:
    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                        }
                    }
                """
                file("transitive/build.gradle") << """
                    plugins {
                        id 'java'
                    }
                """
                file("transitive/src/main/java/transitive/Powerize.java").java """
                    package transitive;
    
                    public class Powerize {
                        int pow(int x, int y) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top