Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recompilesSourceWhenPropertiesChange (0.42 sec)

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

    class IncrementalGroovyCompileIntegrationTest extends AbstractIntegrationTest {
    
        @Rule public final TestResources resources = new TestResources(testDirectoryProvider)
    
        @Test
        void recompilesSourceWhenPropertiesChange() {
            executer.withTasks('compileGroovy').run().assertTasksSkipped(':compileJava')
    
            file('build.gradle').text += '''
                compileGroovy.options.debug = false
    '''
    
    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

        @Rule public final ZincScalaCompileFixture zincScalaCompileFixture = new ZincScalaCompileFixture(executer, temporaryFolder)
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        def recompilesSourceWhenPropertiesChange() {
            expect:
            run('compileScala').assertTasksSkipped(':compileJava')
    
            when:
            file('build.gradle').text += '''
                compileScala.options.debug = false
            '''
    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