Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reserved_configuration_names (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                "This is scheduled to be removed in Gradle 9.0. Use a different name for the configuration '$name'. " +
                "Consult the upgrading guide for further information: ${BASE_URL}/userguide/upgrading_version_8.html#reserved_configuration_names")
    
            when:
            succeeds "help"
    
            then:
            verifyAll(receivedProblem(0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

                        .withAdvice(String.format("Use a different name for the configuration '%s'.", name))
                        .willBeRemovedInGradle9()
                        .withUpgradeGuideSection(8, "reserved_configuration_names")
                        .nagUser();
            }
        }
    
        // Cannot be private due to reflective instantiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The ability to change the allowed usage of a configuration after creation will be removed in Gradle 9.0.
    
    [[reserved_configuration_names]]
    ==== Reserved configuration names
    
    Configuration names "detachedConfiguration" and "detachedConfigurationX" (where X is any integer) are reserved for internal use when creating detached configurations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top