Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for locationURI (0.19 sec)

  1. 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)
  2. 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)
  3. 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