Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for BuildCommand (0.18 sec)

  1. 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)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/NonRenamableProject.java

        @Override
        public void setNatures(List<String> natures) {
            delegate.setNatures(natures);
        }
    
        @Override
        public List<BuildCommand> getBuildCommands() {
            return delegate.getBuildCommands();
        }
    
        @Override
        public void setBuildCommands(List<BuildCommand> buildCommands) {
            delegate.setBuildCommands(buildCommands);
        }
    
        @Override
        public Set<Link> getLinkedResources() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            given:
            buildFile << """
                apply plugin: 'eclipse'
                eclipse {
                    project {
                        buildCommand 'buildCommandWithoutArguments'
                        buildCommand 'buildCommandWithArguments', argumentOneKey: "argumentOneValue", argumentTwoKey: "argumentTwoValue"
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    class ProjectTest extends Specification {
        def static final CUSTOM_REFERENCED_PROJECTS = ['refProject'] as LinkedHashSet
        def static final CUSTOM_BUILD_COMMANDS = [new BuildCommand('org.eclipse.jdt.core.scalabuilder', [climate: 'cold'])]
        def static final CUSTOM_NATURES = ['org.eclipse.jdt.core.scalanature']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiEclipseModelCrossVersionSpec.groovy

            given:
            buildFile << """
                apply plugin: 'eclipse'
                eclipse {
                    project {
                        name = "\${'root'}"
                        buildCommand 'buildCommandWithArguments', argumentKey: "\${'argumentValue'}"
                    }
                }
            """
            settingsFile << "rootProject.name = 'root'"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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