Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for buildCommand (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

               import org.gradle.plugins.ide.eclipse.model.BuildCommand
    
               eclipse.project.file.beforeMerged {
                   it.natures = ['nature.a']
                   it.buildCommands += new BuildCommand('command1', [:])
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.projectNatures.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            def buildCommands = rootProject.buildCommands
    
            then:
            buildCommands.size() == 2
            buildCommands[0].name == 'buildCommandWithoutArguments'
            buildCommands[0].arguments.isEmpty()
            buildCommands[1].name == 'buildCommandWithArguments'
            buildCommands[1].arguments.size() == 2
            buildCommands[1].arguments['argumentOneKey'] == 'argumentOneValue'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                natures.add(new DefaultEclipseProjectNature(n));
            }
            eclipseProject.setProjectNatures(natures);
    
            List<DefaultEclipseBuildCommand> buildCommands = new ArrayList<>();
            for (BuildCommand b : xmlProject.getBuildCommands()) {
                Map<String, String> arguments = new LinkedHashMap<>();
                for (Map.Entry<String, String> entry : b.getArguments().entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.BuildCommand.getArguments()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCommand.java:0)
    Method <org.gradle.plugins.ide.eclipse.model.BuildCommand.getName()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCommand.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def buildCommandNames = rootProject.buildCommands.collect{ it.name }
    
            then:
            buildCommandNames == expectedBuildCommandNames
    
            where:
            plugins                 | expectedBuildCommandNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            }.run { builder ->
                def model = builder.get()
                // we must actually do something to highlight some performance issues
                forEachEclipseProject(model) {
                    buildCommands.each {
                        it.name
                        it.arguments
                    }
                    withGradleProject(gradleProject)
                    classpath.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top