Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for buildCommand (0.2 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectFixture.groovy

            assert this.project.buildSpec.buildCommand.name*.text() == builders as List
        }
    
        void assertHasLinkedResources(String... names) {
            assert this.project.linkedResources.link.name*.text() == names as List
        }
    
        void assertHasBuilder(String builderName, Map args) {
            assert this.project.buildSpec.buildCommand.name*.text().contains(builderName)
            args.each { key, value ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K 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/VisualStudioSingleProjectIntegrationTest.groovy

            projectFile.projectConfigurations.values().each {
                assert it.macros == "TEST;foo=bar"
                assert it.includePath == filePath("src/main/headers")
                assert it.buildCommand.endsWith("gradle\" :install${it.name.capitalize()}")
                assert it.outputFile == OperatingSystem.current().getExecutableName("build/install/main/${it.name.toLowerCase()}/lib/app")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

            eclipseProject.name = 'constructorName'
            eclipseProject.comment = 'constructorComment'
            eclipseProject.referencedProjects = ['constructorRefProject'] as LinkedHashSet
            eclipseProject.buildCommands = [new BuildCommand('constructorbuilder')]
            eclipseProject.natures = ['constructorNature']
            eclipseProject.linkedResources = [new Link('constructorName', 'constructorType', 'constructorLocation', '')] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiEclipseModelCrossVersionSpec.groovy

                        name = "\${'root'}"
                        buildCommand 'buildCommandWithArguments', argumentKey: "\${'argumentValue'}"
                    }
                }
            """
            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def buildCommands = rootProject.buildCommands
    
            then:
            rootProject.name == 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                        @Override
                        public boolean apply(BuildCommand buildCommand) {
                            return buildCommand.getName().equals("org.eclipse.jdt.core.javabuilder");
                        }
    
                    }), new BuildCommand("org.scala-ide.sdt.core.scalabuilder"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

                </thead>
                <tr>
                    <td>natures</td>
                </tr>
                <tr>
                    <td>referencedProjects</td>
                </tr>
                <tr>
                    <td>buildCommand</td>
                </tr>
                <tr>
                    <td>linkedResource</td>
                </tr>
                <tr>
                    <td>file</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

            assert projectFile.sourceFiles == ['../../../build.gradle'] + app.sourceFiles*.withPath("../../../src/main").sort()
            projectFile.projectConfigurations.values().each {
                assert it.buildCommand == "\"../../../${hostGradleWrapperFile.name}\" -p \"../../..\" :installMain${it.name.capitalize()}Executable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

            Action<Object> action = new Action<Object>() {
                @Override
                public void execute(Object ignored) {
                    model.getProject().buildCommand("org.eclipse.wst.common.project.facet.core.builder");
                    model.getProject().buildCommand("org.eclipse.wst.validation.validationbuilder");
                    model.getProject().natures("org.eclipse.wst.common.project.facet.core.nature");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top