Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for locationURI (0.16 sec)

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

     *
     *     //if you want to create an extra link in the eclipse project,
     *     //by location uri:
     *     linkedResource name: 'someLinkByLocationUri', type: 'someLinkType', locationUri: 'file://someUri'
     *     //by location:
     *     linkedResource name: 'someLinkByLocation', type: 'someLinkType', location: '/some/location'
     *
    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-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            runEclipseTask '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse.project {
        linkedResource name: 'one', type: '2', location: '/xyz'
        linkedResource name: 'two', type: '3', locationUri: 'file://xyz'
    }
    '''
    
            def xml = parseProjectFile()
            assert xml.linkedResources.link[0].name.text() == 'one'
            assert xml.linkedResources.link[0].type.text() == '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

                Node typeNode = findFirstChildNamed(linkNode, "type");
                Node locationNode = findFirstChildNamed(linkNode, "location");
                Node locationUriNode = findFirstChildNamed(linkNode, "locationURI");
                linkedResources.add(new Link(
                    nameNode != null ? nameNode.text() : null,
                    typeNode != null ? typeNode.text() : null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

        def "can modify project attributes in before/when merged"() {
            setup:
            project.eclipse.project {
                natures = ['nature.a']
                linkedResource name: 'linkToDelete1', type: '2', locationUri: '../some-directory'
                file.beforeMerged {
                    it.natures += 'nature.b'
                    it.buildCommands = [new BuildCommand('buildCommandBefore', [:])]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        buildCommand argumentFoo: 'a foo argument', 'buildWithTheArguments'
    
        linkedResource name: 'linkToFolderFoo', type: 'aFolderFoo', location: '/test/folders/foo'
        linkedResource name: 'linkToUriFoo', type: 'aFooUri', locationUri: 'http://test/uri/foo'
    
        file {
          withXml { it.asNode().appendNode('motto', 'Stay happy!') }
        }
      }
    
      jdt {
        sourceCompatibility = 1.4
        targetCompatibility = 1.3
      }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top