Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for withUpgradeGuideSection (0.39 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

     */
    @Deprecated
    public class GFileUtils {
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(GFileUtils.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public GFileUtils() {
            logDeprecation();
        }
    
        public static FileInputStream openInputStream(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

                    .withAdvice("Apply a JVM component plugin such as: java-library, application, groovy, or scala")
                    .willBeRemovedInGradle9()
                    .withUpgradeGuideSection(8, "java_extension_without_java_component")
                    .nagUser();
            }
        }
    
        public static class DefaultJavaResolutionConsistency implements JavaResolutionConsistency {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

    //                .withAdvice("Ensure " + project.getDisplayName() + " declares at least one publication.")
    //                .willBecomeAnErrorInGradle9()
    //                .withUpgradeGuideSection(8, "publishing_dependency_on_unpublished_project")
    //                .nagUser();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

                .withContext("The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK.")
                .withAdvice("Use named(String) instead.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "string_invoke")
                .nagUser()
            return delegate.named(this)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

            DeprecationLogger.deprecateAction("Declaring client module dependencies")
                .replaceWith("component metadata rules")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "declaring_client_module_dependencies")
                .nagUser();
    
            return dependencyFactory.createModule(notation, configureClosure);
        }
    
        @Override
        public Dependency gradleApi() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "test_framework_implementation_dependencies")
                .nagUser();
    
            if (isModule) {
                return new ForkedTestClasspath(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs deprecated plugin message with link to upgrade guide"() {
            when:
            DeprecationLogger.deprecatePlugin("pluginName").willBeRemovedInGradle9().withUpgradeGuideSection(42, "upgradeGuideSection").nagUser()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                            .willBecomeAnErrorInGradle9()
                            .withUpgradeGuideSection(8, "publishing_artifact_name_different_from_artifact_id_maven")
                            .nagUser();
    
                        artifactCoordinates = ResolvedCoordinates.create(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class GUtil {
    
        static {
            DeprecationLogger.deprecateType(GUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final Pattern WORD_SEPARATOR = Pattern.compile("\\W+");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top