Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for EclipseProject (0.17 sec)

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

         * The natures to be added to this Eclipse project.
         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setNatures(List<String> natures) {
            this.natures = natures;
        }
    
        /**
         * Appends natures entries to the eclipse project. <p> For example see docs for {@link EclipseProject}
         *
         * @param natures the nature names
         */
    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/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

     *
     * @since 1.0-milestone-3
     */
    public interface EclipseProject extends HierarchicalEclipseProject {
        /**
         * {@inheritDoc}
         */
        @Override
        EclipseProject getParent();
    
        /**
         * {@inheritDoc}
         */
        @Override
        DomainObjectSet<? extends EclipseProject> getChildren();
    
        /**
         * Returns the Java source settings for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    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/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

               }
               project(':sub') { apply plugin : 'java' }
            """
    
            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
            Collection<EclipseExternalDependency> externalDependencies = eclipseProject.getClasspath()
            Collection<EclipseProjectDependency> projectDependencies = eclipseProject.getProjectDependencies()
    
            then:
            externalDependencies.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

        }
    
        def configureMergesValues() {
            EclipseProject eclipseProject = TestUtil.newInstance(EclipseProject, Mock(XmlFileContentMerger))
            eclipseProject.name = 'constructorName'
            eclipseProject.comment = 'constructorComment'
            eclipseProject.referencedProjects = ['constructorRefProject'] as LinkedHashSet
            eclipseProject.buildCommands = [new BuildCommand('constructorbuilder')]
    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/r210/ToolingApiEclipseModelCrossVersionSpec.groovy

            """
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject subprojectA = rootProject.children.find { it.name == 'subproject-a' }
            EclipseProject subprojectB = rootProject.children.find { it.name == 'subproject-b' }
            EclipseProject subprojectC = rootProject.children.find { it.name == 'subproject-c' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                """
            }
        }
    
        def "EclipseProject model has dependencies substituted in composite"() {
            when:
            def eclipseProject = withConnection {
                model(EclipseProject).withArguments('--include-build', 'buildB').get()
            }
    
            then:
            assert eclipseProject.classpath.empty
            assert eclipseProject.projectDependencies.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseProjectTest.groovy

    import spock.lang.Specification
    
    class EclipseProjectTest extends Specification {
    
        def eclipseProject = TestUtil.newInstance(EclipseProject, Mock(XmlFileContentMerger))
    
        def "allows adding linked resources"() {
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', location: '/stuff/foo')
            eclipseProject.linkedResource(name: 'bar', type: 'uri', locationUri: 'file:///stuff/bar')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r54/ToolingApiEclipseModelAutoBuildTasksCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    @TargetGradleVersion('>=5.4')
    class ToolingApiEclipseModelAutoBuildTasksCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion('>=3.0 <5.4')
        def "returns false for old versions"() {
            setup:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            expect:
            !eclipseProject.hasAutoBuildTasks()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelOutputLocationCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            settingsFile << 'rootProject.name = "root"'
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Non-Java project has default output location"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top