Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shouldCheckForDeprecationWarnings (0.28 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

                assert failureOutput.contains("CONFIGURE FAILED")
            } else {
                assert failureOutput.contains("BUILD FAILED")
            }
        }
    
        def shouldCheckForDeprecationWarnings() {
            // Older versions have deprecations
            GradleVersion.version("6.9") < targetVersion
        }
    
        private void assertHasNoUnexpectedDeprecationWarnings() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def shouldCheckForDeprecationWarnings(){
            false
        }
    
        def "builds the model even if idea plugin not applied"() {
    
            buildFile.text = '''
    apply plugin: 'java'
    description = 'this is a project'
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
    
    class ToolingApiEclipseModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def shouldCheckForDeprecationWarnings(){
            false
        }
    
        def "can build the eclipse model for a java project"() {
    
            projectDir.file('build.gradle').text = '''
    apply plugin: 'java'
    description = 'this is a project'
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top