Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for dependsOnModules (0.16 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

        }
    
        def "Add multiple dependencies without type"() {
            when:
            List dependencies = mavenLocalModule.dependsOnModules("dep1", "dep2").dependencies
    
            then:
            dependencies != null
            dependencies.size() == 2
            dependencies.get(0).groupId == 'my-company'
            dependencies.get(0).artifactId == 'dep1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

        }
    
        def "Add multiple dependencies without type"() {
            when:
            List dependencies = mavenFileModule.dependsOnModules("dep1", "dep2").dependencies
    
            then:
            dependencies != null
            dependencies.size() == 2
            dependencies.get(0).groupId == 'my-company'
            dependencies.get(0).artifactId == 'dep1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                return "${timestamp}-${build}"
            }
            return "${timestampFormat.format(publishTimestamp)}-${publishCount}"
        }
    
        @Override
        MavenModule dependsOnModules(String... dependencyArtifactIds) {
            for (String id : dependencyArtifactIds) {
                dependsOn(groupId, id, '1.0')
            }
            return this
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

    \\--- org.test:a:1.0
         \\--- compileClasspath
    """
        }
    
        def "Asking for variant details of 'FAILED' modules doesn't break the report"() {
            given:
            mavenRepo.module("org", "top").dependsOnModules("middle").publish()
    
            file("build.gradle") << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                configurations {
                    conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top