Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 192 for checkDeps (0.14 sec)

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

            when:
            repo1.module('org.test', 'projectA', '1.1').withStatus("milestone").publish()
            repo2.module('org.test', 'projectA', '1.2').withStatus("integration").publish()
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:latest.milestone", "org.test:projectA:1.1") {
                        notRequested()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

                'cglib:cglib-nodep:3.2.5' {
                    expectGetMetadata()
                }
                'cglib:cglib:3.2.5' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5(runtime)]""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingLenientModeIntegrationTest.groovy

        lockedConf('org:foo') {
            version { strictly '1.1' }
        }
    }
    """
    
            lockfileFixture.createLockfile('lockedConf', ['org:foo:1.0'], unique)
    
            when:
            succeeds 'checkDeps'
    
            then:
            resolve.expectDefaultConfiguration('runtime')
            resolve.expectGraph {
                root(":", ":depLock:") {
                    edge("org:foo:1.+", "org:foo:1.1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExclusiveRepositoryContentFilteringIntegrationTest.groovy

                }
            """
    
            when:
            foo.ivy.expectGet()
            foo.artifact.expectGet()
            bar.pom.expectGet()
            bar.artifact.expectGet()
    
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:foo:1.0')
                    module('other:bar:2.0')
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

            buildFile << """
                dependencies {
                    implementation 'org.readonly:core:1.0'
                }
            """
    
            when:
            withReadOnlyCache()
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', 'org.gradle:ro-test:20') {
                    module('org.readonly:core:1.0')
                }
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

            }
            if (platformType == ENFORCED_PLATFORM) {
                // issue with enforced platform: the forced version is always used and the conflict is 'hidden'
                succeeds ':checkDeps'
            } else {
                fails ':checkDeps'
            }
            then:
            def platformVariant = platformType == MODULE ? 'runtime' : 'apiElements'
            (platformType == ENFORCED_PLATFORM && !failed) || failure.assertHasCause(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                module('kotlin') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
                module('annotations') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:core:2.9.4", "org:core:2.7.9") {
                        byConstraint('belongs to platform org:platform:2.7.9')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            foo11.pom.expectGet()
            foo11.moduleMetadata.expectGet()
            foo10.pom.expectGet()
            foo10.moduleMetadata.expectGet()
            foo10.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.test:test:1.9") {
                    edge("org:platform:{strictly 1.0}", "org:platform:1.0") {
                        configuration = "enforcedApi"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

            dependency buildB, "org.test:buildC:1.0"
            dependency buildC, "org.test:buildB:1.0"
    
            when:
            resolve.withoutBuildingArtifacts()
            resolveSucceeds(":checkDeps")
    
            then:
            checkGraph {
                edge("org.test:buildB:1.0", ":buildB", "org.test:buildB:1.0") {
                    configuration = "runtimeElements"
                    compositeSubstitute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmVersionIntegrationTest.groovy

            """
    
            when:
            module.pom.expectGet()
            module.moduleMetadata.expectGet()
    
            fails ':checkDeps'
    
            then:
            failure.assertHasErrorOutput('''> Could not resolve all files for configuration ':compileClasspath'.
       > Could not resolve org:producer:1.0.
         Required by:
             project :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:37:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top