Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for buildCommands (0.32 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiEclipseModelCrossVersionSpec.groovy

            buildCommands[0].name == 'buildCommandWithArguments'
            buildCommands[0].arguments.size() == 1
            buildCommands[0].arguments['argumentKey'] == 'argumentValue'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. 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.whenMerged {
                   it.natures.clear()
                   it.buildCommands.clear()
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.projectNatures.isEmpty()
            project.buildCommands.isEmpty()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

        }
    
        /**
         * The build commands to be added to this Eclipse project.
         */
        public List<BuildCommand> getBuildCommands() {
            return buildCommands;
        }
    
        public void setBuildCommands(List<BuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        /**
         * The linkedResources to be added to this Eclipse project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            setup:
            project.eclipse.project.buildCommands = [new BuildCommand('rootBuildCommand', ['rootKey': 'rootValue'])]
            child1.eclipse.project.buildCommands = [new BuildCommand('child1BuildCommand', ['child1Key': 'child1Value'])]
            child2.eclipse.project.buildCommands = [new BuildCommand('child2BuildCommand', ['child2Key': 'child2Value'])]
            def modelBuilder = createEclipseModelBuilder()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * @param buildCommand The name of the build command.
         * @see #buildCommand(String)
         */
        public void buildCommand(Map<String, String> args, String buildCommand) {
            assert buildCommand != null;
            buildCommands.add(new BuildCommand(buildCommand, args));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.projectNatures = projectNatures;
        }
    
        public List<DefaultEclipseBuildCommand> getBuildCommands() {
            return buildCommands;
        }
    
        public void setBuildCommands(List<DefaultEclipseBuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        public DefaultEclipseJavaSourceSettings getJavaSourceSettings() {
            return javaSourceSettings;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

            project.comment == eclipseProject.comment
            project.referencedProjects == eclipseProject.referencedProjects + CUSTOM_REFERENCED_PROJECTS
            project.buildCommands == CUSTOM_BUILD_COMMANDS + eclipseProject.buildCommands
            project.natures == CUSTOM_NATURES + eclipseProject.natures
            project.linkedResources == eclipseProject.linkedResources + CUSTOM_LINKED_RESOURCES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

            assert eclipseProjectTask.outputFile == project.file('.project')
    
            assert project.eclipse.project.buildCommands == buildCommands
            assert project.eclipse.project.natures == natures
        }
    
        private void checkEclipseClasspath(def configurations, def additionalContainers = []) {
            def classpath = project.eclipse.classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top