Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for buildCommands (0.17 sec)

  1. 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)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProjectTest.groovy

            project.projectNatures.isEmpty()
        }
    
        def emptyDefaultBuilderList() {
            def project = new DefaultEclipseProject("name", ":path", null, null, [])
    
            expect:
            project.buildCommands.isEmpty()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

                </tr>
                <tr>
                    <td>natures</td>
                    <td>Java nature, plus Groovy, Scala and Web natures as appropriate.</td>
                </tr>
                <tr>
                    <td>buildCommands</td>
                    <td>Java builder, plus Scala and Web builders as appropriate.</td>
                </tr>
                <tr>
                    <td>linkedResources</td>
                    <td>[]</td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                }
                buildCommands.add(new DefaultEclipseBuildCommand(b.getName(), arguments));
            }
            eclipseProject.setBuildCommands(buildCommands);
        }
    
        private static void populateEclipseProjectJdt(DefaultEclipseProject eclipseProject, EclipseJdt jdt) {
            if (jdt != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/BuildCommand.java

    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * A build command.
     */
    public class BuildCommand implements Serializable {
        private String name;
        private Map<String, String> arguments;
    
        public BuildCommand(String name) {
            this(name, new LinkedHashMap<>());
        }
    
        public BuildCommand(String name, Map<String, String> arguments) {
            this.name = Preconditions.checkNotNull(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6Project.xml

    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    		<buildCommand>
    			<name>org.eclipse.wst.common.project.facet.core.builder</name>
    			<arguments/>
    		</buildCommand>
    		<buildCommand>
    			<name>org.eclipse.wst.validation.validationbuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 763 bytes
    - Viewed (0)
  9. subprojects/core/src/test/resources/org/gradle/api/tasks/ide/eclipse/expectedProjectFileWithCustomBuilder.txt

    <projectDescription>
      <name>myProject</name>
      <comment/>
      <projects/>
      <natures/>
      <buildSpec>
        <buildCommand>
          <name>org.gradle.test.custom.custombuilder1</name>
          <arguments/>
        </buildCommand>
        <buildCommand>
          <name>org.gradle.test.custom.custombuilder2</name>
          <arguments/>
        </buildCommand>
      </buildSpec>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 05 04:16:54 UTC 2011
    - 407 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/apiProject.xml

    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    		<buildCommand>
    			<name>org.eclipse.wst.common.project.facet.core.builder</name>
    			<arguments/>
    		</buildCommand>
    		<buildCommand>
    			<name>org.eclipse.wst.validation.validationbuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 755 bytes
    - Viewed (0)
Back to top