Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBuildDependencies (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            t == failure
        }
    
        def "build dependencies are resolved lazily"() {
            given:
            def configuration = conf()
    
            when:
            configuration.getBuildDependencies()
    
            then:
            0 * _._
        }
    
        def "state indicates failure resolving graph"() {
            given:
            def configuration = conf()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Instead, they will both directly implement `Dependency`.
    
    As such, the following methods of `ProjectDependency` and `FileCollectionDependency` will no longer be available:
    
    - `resolve`
    - `resolve(boolean)`
    - `getBuildDependencies`
    
    Consider the following scripts that showcase the deprecated interface and its replacement:
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Java builds::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top