Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetAllIdeaProjectsAction (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

            """
            file('module-b').mkdir()
            file('subfolder/module-b').mkdirs()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    
            then:
            allProjects.allIdeaProjects.collect { it.name } == ['module-main', 'module-b']
    
            allProjects.rootIdeaProject.name == 'module-main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

        def "IDEA can handle direct cycles between included builds"() {
            given:
            compositeWithDirectIncludeCycle()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    
            then:
            allProjects.allIdeaProjects.collect { it.name } == ['module-root', 'module-a', 'module-b']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.3")
        def "Idea models for included builds have dependencies substituted"() {
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    
            then:
            allProjects.rootIdeaProject.modules.size() == 1
    
            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)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/IdeaProjectUtil.java

    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    
    public class IdeaProjectUtil {
    
        public static class GetAllIdeaProjectsAction implements BuildAction<AllProjects> {
            @Override
            public AllProjects execute(BuildController controller) {
                AllProjects result = new AllProjects();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top