Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,777 for moduleA (0.22 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

        def "reports imported BOM as a set of dependency constraints"() {
            def moduleC = mavenRepo.module('group', 'moduleC', '1.0').publish()
            def moduleB = mavenRepo.module('group', 'moduleB', '1.0').dependsOn(moduleC).publish()
            def moduleA = mavenRepo.module('group', 'moduleA', '2.0').dependsOn(moduleB).publish()
            mavenRepo.module('group', 'bom', '1.0')
                    .hasType("pom")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            """
    
            when:
            parent.pom.expectGet()
            moduleA.pom.expectGet()
            moduleA.artifact.expectGet()
            moduleB.pom.expectGet()
            moduleB.artifact.expectGet()
    
            then:
            // have to run twice to trigger the failure, to parse the descriptor from the cache
            succeeds ":libs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                root(':', ':test:') {
                    module('org.test:moduleA:1.0') {
                        variant(varianName, expectedVariantAttributes)
                        module('org.test:moduleB:1.0') {
                            variant(varianName, expectedVariantAttributes)
                            if (usageAttribute.contains('runtime')) {
                                module('org.test:moduleD:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyComponentMetadataRulesChangingModulesIntegrationTest.groovy

        }
    
        String getRepoDeclaration() {
    """
    repositories {
        ivy {
            url "$repo.uri"
        }
    }
    """
        }
    
        def setup() {
            repo.directoryList("org.test", "moduleA").allowGet()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def appXml = new XmlSlurper().parse(
                file('unzipped/META-INF/application.xml'))
            def modules = appXml.module
            modules[0].ejb.text() == 'moduleA.jar'
            modules[1].web.'web-uri'.text() == 'moduleB.war'
        }
    
        void "uses content from application xml located #location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

            //Here we add a module with Gradle metadata which defines a variant that uses the same attributes declared in the build script (format: "custom").
            //The dependency to this module is then added using the rule and thus is matched correctly.
            mavenGradleRepo.module("org.test", "moduleC").withModuleMetadata().variant("anotherVariantWithFormatCustom", [format: "custom"]).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            originalResult.rootIdeaProject.modules.name == ['buildA']
    
            def moduleA = originalResult.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof IdeaModuleDependency
            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

      into 'libs'
    }
    """
            ivyRepo.module('org', 'projectA', '1.2')
                .dependsOn(organisation: 'org', module: 'projectB', revision: '1.5', revConstraint: '1.6')
                .dependsOn(organisation: 'org', module: 'projectC', revision: 'alpha-12')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.5')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.6')
                .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            expect:
            succeeds "help"
        }
    
        def "does not watch files in #repositoryType file repositories"() {
            def repo = this."${repositoryType}"("repo")
            def moduleA = repo.module('group', 'projectA', '9.1')
            moduleA.publish()
    
            def projectDir = file("project")
            projectDir.file("build.gradle") << """
                configurations { implementation }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            traverses b, d
    
            def moduleA = DefaultModuleIdentifier.newId("group", "a")
            def moduleB = DefaultModuleIdentifier.newId("group", "b")
            moduleReplacements.participatesInReplacements(moduleA) >> true
            moduleReplacements.participatesInReplacements(moduleB) >> true
            moduleReplacements.getReplacementFor(moduleA) >> new ModuleReplacementsData.Replacement(moduleB, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top