Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for parseJdtFile (1.01 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    }
    '''
    
            def jdt = parseJdtFile()
            assert jdt.contains('source=1.4')
            assert jdt.contains('targetPlatform=1.3')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void sourceAndTargetCompatibilityDefaultIsCurrentJavaVersion() {
            runEclipseTask '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    '''
            def jdt = parseJdtFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

            project.assertHasLinkedResource('linkToUriFoo', 'aFooUri', 'http://test/uri/foo')
    
            file('.project').text.contains('<motto>Stay happy!</motto>')
    
            def jdt = parseJdtFile()
            assert jdt.contains('targetPlatform=1.3')
            assert jdt.contains('source=1.4')
        }
    
        @ToBeFixedForConfigurationCache
        void "allows custom matcher resource filter"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseIntegrationTest.groovy

        }
    
        protected parseFacetFile(Map options) {
            parseFile(options, ".settings/org.eclipse.wst.common.project.facet.core.xml")
        }
    
        protected String parseJdtFile() {
            return getFile([:], '.settings/org.eclipse.jdt.core.prefs').text
        }
    
        protected findEntries(classpath, kind) {
            classpath.classpathentry.findAll { it.@kind == kind }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top