Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 417 for Transitive (0.41 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/tests/exclude-transitive-for-dependency.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/tests/exclude-transitive-for-configuration.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/tests/disabling-transitive-dependency-resolution.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForConfiguration/tests/disabling-transitive-dependency-resolution-for-configuration.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                }
            """
            transitive = mavenHttpRepo.module("test", "transitive", "1.0")
            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        // region With Gradle Module Metadata
        def "direct has GMM and no sources or javadoc jars"() {
            transitive.withModuleMetadata()
            transitive.publish()
            direct.withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ForceRealizedMetadataIntegrationTest.groovy

                }
            """
            transitive = mavenHttpRepo.module("test", "transitive", "1.0")
            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        def "can resolve derived variants"() {
            transitive.adhocVariants().variant("jar", [
                    "org.gradle.category": "library",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. 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)
  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/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                        }
                    }
                """
                file("transitive/build.gradle") << """
                    plugins {
                        id 'java'
                        id 'jacoco'
                    }
                """
                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
    - 26.3K bytes
    - Viewed (0)
Back to top