Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for eclipseWorkspace (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

        }
    
    
        Collection<EclipseProject> collectProjects(EclipseProject parent) {
            return parent.children.collect { collectProjects(it) }.flatten() + [parent]
        }
    
        EclipseWorkspace eclipseWorkspace(List<EclipseWorkspaceProject> projects) {
            new DefaultEclipseWorkspace(new File(externalProjectFolder, "workspace").tap { mkdirs() }, projects)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

        }
    
        Collection<EclipseProject> collectProjects(EclipseProject parent) {
            return parent.children.collect { collectProjects(it) }.flatten() + [parent]
        }
    
        EclipseWorkspace eclipseWorkspace(List<EclipseWorkspaceProject> projects) {
            new DefaultEclipseWorkspace(temporaryFolder.file("workspace"), projects)
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/build.gradle.kts

        }
        testFixturesApi(project(":logging")) {
            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
            because("test fixtures export the EclipseWorkspace and EclipseWorkspaceProject classes")
        }
        testFixturesImplementation(project(":dependency-management"))
        testFixturesImplementation(project(":internal-integ-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top