Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,250 for natures (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

     *     referencedProjects = ['someProject'] as Set
     *
     *     //if you want to append some extra natures in a declarative fashion:
     *     natures 'some.extra.eclipse.nature', 'some.another.interesting.nature'
     *     //if you want to assign natures in a groovy fashion:
     *     natures = ['some.extra.eclipse.nature', 'some.another.interesting.nature']
     *
     *     //if you want to append some extra build command:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

            this.referencedProjects = referencedProjects;
        }
    
        /**
         * The natures to be added to this Eclipse project.
         */
        public List<String> getNatures() {
            return natures;
        }
    
        public void setNatures(List<String> natures) {
            this.natures = natures;
        }
    
        /**
         * The build commands 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)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0")
        def "Java project returns Java nature along with custom natures"() {
            given:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
                eclipse {
                    project {
                        natures << 'sample.nature.a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    eclipse {
      project {
        file {
          beforeMerged {
            assert it.natures.contains('some.nature.one')
            it.natures << 'some.nature.two'
          }
          whenMerged {
            assert it.natures.contains('some.nature.one')
            assert it.natures.contains('some.nature.two')
    
            it.natures << 'some.nature.three'
          }
        }
      }
    }
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. subprojects/core/src/test/resources/org/gradle/api/tasks/ide/eclipse/expectedProjectFileWithCustomNature.txt

    <?xml version="1.0" encoding="UTF-8"?>
    
    <projectDescription>
      <name>myProject</name>
      <comment/>
      <projects/>
      <natures>
        <nature>org.gradle.test.natures.CustomNature1</nature>
        <nature>org.gradle.test.natures.CustomNature2</nature>
      </natures>
      <buildSpec/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 05 04:16:54 UTC 2011
    - 293 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def natures = rootProject.projectNatures.collect{ it.id }
    
            then:
            if (plugins.contains('ear') && targetVersion < GradleVersion.version("8.0") ) {
                assert natures == WTP_NATURES
            } else {
                assert natures == JAVA_NATURES + WTP_NATURES
            }
    
            where:
            plugins << [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6Project.xml

    <projectDescription>
    	<name>webAppJava6</name>
    	<comment/>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
    		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
    		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 763 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/groovyprojectProject.xml

    <projectDescription>
    	<name>groovyproject</name>
    	<comment/>
    	<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)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/apiProject.xml

    <projectDescription>
    	<name>api</name>
    	<comment/>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
    		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
    		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 755 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceProject.xml

    <projectDescription>
    	<name>webservice</name>
    	<comment/>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
    		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
    		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 762 bytes
    - Viewed (0)
Back to top