Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 697 for Deprecation (0.41 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     */
    @Suppress("DEPRECATION")
    @Deprecated("Will be removed in Gradle 9.0")
    fun DependencyHandler.module(
        notation: Any,
        clientModuleConfiguration: ClientModuleScope.() -> Unit
    ): org.gradle.api.artifacts.ClientModule =
    
        configureClientModule(module(notation) as org.gradle.api.artifacts.ClientModule, clientModuleConfiguration)
    
    
    @Suppress("DEPRECATION")
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so you can see any deprecation warnings that apply to your build.
    +
    Alternatively, you can run `gradle help --warning-mode=all` to see the deprecations in the console, though it may not report as much detailed information.
    . Update your 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. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Incubating;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/umbrella-build.sample.conf

    commands: [{
        executable: gradle
        args: checkFeatures
        # Do not fail for deprecation warning when configuring Kotlin Android plugin
        flags: "--warning-mode=all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 176 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/crossCompilation/tests/java7CrossCompilation.sample.conf

    executable: gradle
    args: build
    # Do not fail for deprecation warnings: Testing with java 7
    flags: "-PtargetJavaVersion=1.7 --warning-mode=all"
    expected-output-file: java7CrossCompilation.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 221 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/badConfNames.sample.conf

    executable: gradle
    args: build
    # Demonstrate deprecation warnings in output
    flags: "--warning-mode=all"
    expected-output-file: badConfNames.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 173 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/signing/configurations/tests/signingRuntimeElementsOutput.sample.conf

    # tag::cli[]
    # gradle signArchives
    # end::cli[]
    executable: gradle
    args: signRuntimeElements
    # Do not fail for deprecation warnings: deprecated Maven plugin
    flags: "--warning-mode=none"
    expected-output-file: signingRuntimeElementsOutput.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 271 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-imperative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
Back to top