Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,190 for moduleA (0.29 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            // However, it appears that IDEA 2017 depends on this behaviour, and iterates over the included builds to get all modules
            allProjects.rootIdeaProject.name == 'buildA'
            allProjects.rootIdeaProject.modules.collect { it.name } == ['buildA']
    
            def moduleA = allProjects.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

        def "resolves available-at variant even if transitive dependencies are excluded"() {
            given:
            mavenHttpRepo.module('org', 'moduleB', '1.0')
                .dependsOn(mavenHttpRepo.module("org", "moduleA", "1.0"), exclusions: [[group: '*', module: '*']])
                .publish() // no Gradle Module metadata for this one because we don't support excludes on dependencies
            repository {
                'org:moduleA:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsPluginIntegrationSpec.groovy

        }
    
        def "can apply plugin class from settings.gradle"() {
            when:
            createDirs("moduleA")
            relocatedSettingsFile << """
            apply plugin: SimpleSettingsPlugin
    
            class SimpleSettingsPlugin implements Plugin<Settings> {
                void apply(Settings mySettings) {
                    mySettings.include("moduleA");
                }
            }
            """
    
            then:
            succeeds(':moduleA:help')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            def moduleA = sysPropRepo.module('group', 'projectA', '1.2').publish()
    
            when:
            run 'retrieve'
    
            then:
            hasArtifact(moduleA)
        }
    
        def "can resolve artifacts from local m2 with custom local repository defined by system-property"() {
            given:
            def artifactRepo = mavenLocal("artifactrepo")
            def moduleA = artifactRepo.module('group', 'projectA', '1.2').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

            def moduleC = mavenHttpRepo.module('groupC', 'artifactC', "1.0").publish()
    
            and:
            createBuildFileWithDependency('groupA', 'artifactA')
    
            and:
            moduleA.pom.expectGet()
            moduleB.pom.expectGet()
            moduleC.pom.expectGet()
            moduleC.artifact.expectGet()
    
            when:
            run "retrieve"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

            def repo1 = server.getRemoteIvyRepo("/repo1")
            def repo2 = server.getRemoteIvyRepo("/repo2")
            def moduleA = repo1.module('group', 'projectA')
            moduleA.publish()
            def missingModuleB = repo1.module('group', 'projectB')
            def moduleB = repo2.module('group', 'projectB')
            moduleB.publish()
    
            and:
            buildFile << """
                repositories {
                    ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

                }
            """
    
            when:
            def ideaProject = withConnection {
                action(new FetchIdeaProject()).run()
            }
    
            then:
            def moduleA = ideaProject.modules.find { it.name == 'a'}
            moduleA.dependencies[0].targetModuleName == 'b'
        }
    
        def "Applies gradle project identifier mapping"() {
            given:
            settingsFile << """
                include 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    runtimeOnly "org:bar"
                }
            """
            checkConfiguration("runtimeClasspath")
    
            when:
            module1.pom.expectGet()
            module1.artifact.expectGet()
            module2.pom.expectGet()
            module2.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.test:test:1.9") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/internal/WrapperPluginAutoApplyActionIntegTest.groovy

            where:
            taskName << ["wrapp"]//, "wrap", "w"]
        }
    
        def "wrapper plugin not applied on subprojects"() {
            setup:
            settingsFile << "include 'moduleA'"
            TestFile subprojectsDir = file("moduleA").createDir()
    
            when:
            executer.inDirectory(subprojectsDir)
            run 'tasks'
            then:
            !output.contains("wrapper - Generates Gradle wrapper files.")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesChangingModulesIntegrationTest.groovy

        }
    }
    """
        }
    
        def setup() {
            moduleA.rootMetaData.allowGetOrHead()
        }
    
        def "snapshot dependencies have changing flag initialized to true"() {
            def moduleB = repo.module("org.test", "moduleB", "1.0-SNAPSHOT").publish()
            moduleB.allowAll()
    
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    class SavingRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top