Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for willBeRemovedInGradle9 (0.29 sec)

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

     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class GFileUtils {
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(GFileUtils.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public GFileUtils() {
            logDeprecation();
        }
    
    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();
            }
        }
    
    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/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)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            if (!org.gradle.kotlin.dsl.precompile.PrecompiledProjectScript::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(ProjectDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Project
    
        override fun getGroup(): Any =
            delegate.group
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K 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
    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

                .withAdvice("Declare the desired test framework directly on the test suite or explicitly declare the test framework implementation dependencies on the test's runtime classpath.")
                .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-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        }
    }
    
    
    private
    val strictModeSystemPropertyNameMapper: Transformer<Boolean, String> = Transformer { prop ->
        DeprecationLogger.deprecateSystemProperty(strictModeSystemPropertyName)
            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "strict-kotlin-dsl-precompiled-scripts-accessors-by-default")
            .nagUser()
        if (prop.isBlank()) true
        else java.lang.Boolean.parseBoolean(prop)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            DeprecationLogger.deprecateMethod(Configuration.class, "getAll()")
                .withAdvice("Use the configurations container to access the set of configurations instead.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "deprecated_configuration_get_all")
                .nagUser();
    
            return ImmutableSet.copyOf(configurationsProvider.getAll());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K 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