Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for buildCommand (0.14 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-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            exeProject.projectConfigurations.values().each {
                assert it.includePath == filePath("src/main/headers", "../lib/src/main/public")
                assert it.buildCommand.endsWith("gradle\" -p \"..\" :exe:install${it.name.capitalize()}")
            }
    
            and:
            final dllProject = projectFile("lib/libDll.vcxproj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

                "-PbuildCommitDistribution=true"
            )
    
            if (project.gradle.startParameter.isBuildCacheEnabled) {
                buildCommands.add("--build-cache")
            }
    
            return buildCommands.toTypedArray()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. 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