Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recompilesDependentClasses (0.19 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/IncrementalGroovyCompileIntegrationTest.groovy

            executer.withTasks('compileGroovy').run().assertTasksSkipped(':compileJava', ':compileGroovy')
        }
    
        @Test
        void recompilesDependentClasses() {
            executer.withTasks("classes").run();
    
            // Update interface, compile should fail
            file('src/main/groovy/IPerson.groovy').assertIsFile().copyFrom(file('NewIPerson.groovy'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/IncrementalScalaCompileIntegrationTest.groovy

            '''
            then:
            run('compileScala').assertTasksSkipped(':compileJava')
            run('compileScala').assertTasksSkipped(':compileJava', ':compileScala')
        }
    
        def recompilesDependentClasses() {
            given:
            run("classes")
    
            when: // Update interface, compile should fail
            file('src/main/scala/IPerson.scala').assertIsFile().copyFrom(file('NewIPerson.scala'))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top