Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for buildCommand (0.18 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/groovyprojectProject.xml

    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.groovy.core.groovyNature</nature>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 399 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

                includePath == "include1;include2"
                buildCommand == "GRADLE debugWin32Build"
            }
            with(configurations['releaseWin32']) {
                name == 'releaseWin32'
                platformName == 'Win32'
                macros == "foo;bar"
                includePath == "include1;include2;include3"
                buildCommand == "GRADLE releaseWin32Build"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/javabaseprojectProject.xml

    <projectDescription>
    	<name>javabaseproject</name>
    	<comment/>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 341 bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/NonRenamableProject.java

            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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top