Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for processResource (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This meant that a task which depends on `classesDirs` would also depend on `classes`, `processResources`, and any other task dependency added to `link:{groovyDslPath}/org.gradle.api.tasks.SourceSetOutput.html[SourceSetOutput]`.
    This behavior was potentially an error because the `classesDirs` property did not contain the output for `processResources`.
    Since 8.0, this implicit dependency is removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    with tasks.war
                }
            '''.stripIndent()
    
            when:
            run 'copy'
            then:
            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":copy")
        }
    
        def "changing spec-level property #property makes task out-of-date"() {
            given:
            buildScript """
                task (copy, type:Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top