Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for BaseDeprecations (0.32 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BaseDeprecations.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.api.internal.DocumentationRegistry
    
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    
    class BaseDeprecations {
        public static final DocumentationRegistry DOCUMENTATION_REGISTRY = new DocumentationRegistry()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

                .expectLegacyDeprecationWarning(BaseDeprecations.ABSTRACT_ARCHIVE_TASK_ARCHIVE_PATH_DEPRECATION)
                .expectLegacyDeprecationWarning(BaseDeprecations.CONVENTION_TYPE_DEPRECATION)
                .expectLegacyDeprecationWarning(BaseDeprecations.JAVA_PLUGIN_CONVENTION_DEPRECATION)
                .expectLegacyDeprecationWarning(COPY_PROCESSING_SPEC_SET_FILE_MODE_DEPRECATION)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    class AndroidDeprecations extends BaseDeprecations implements WithAndroidDeprecations {
        AndroidDeprecations(SmokeTestGradleRunner runner) {
            super(runner)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 822 bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithKotlinDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import groovy.transform.SelfType
    
    @SelfType(BaseDeprecations)
    trait WithKotlinDeprecations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 743 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithAndroidDeprecations.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(BaseDeprecations)
    trait WithAndroidDeprecations {
    
        void expectFilteredFileCollectionDeprecationWarning() {
            // This warning is emitted by the Kotlin Kapt plugin
            runner.expectLegacyDeprecationWarning(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

            return this
        }
    
        def <T> SmokeTestGradleRunner deprecations(
            @DelegatesTo(
                value = BaseDeprecations.class,
                strategy = Closure.DELEGATE_FIRST)
                Closure<T> closure) {
            return deprecations(BaseDeprecations, closure)
        }
    
        private void verifyDeprecationWarnings(BuildResult result) {
            if (ignoreDeprecationWarnings) {
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinAndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    class KotlinAndroidDeprecations extends BaseDeprecations implements WithKotlinDeprecations, WithAndroidDeprecations {
        KotlinAndroidDeprecations(SmokeTestGradleRunner runner) {
            super(runner)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 858 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AsciidoctorPluginSmokeTest.groovy

        }
    
        @Override
        void configureValidation(String pluginId, String version) {
            validatePlugins {
                alwaysPasses()
            }
        }
    
        static class AsciidocDeprecations extends BaseDeprecations {
            AsciidocDeprecations(SmokeTestGradleRunner runner) {
                super(runner)
            }
    
            void expectAsciiDocDeprecationWarnings(String asciidoctorVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginSmokeTest.groovy

                        .includeLink()
            }, Severity.WARNING)
        }
    
        protected static class KotlinDeprecations extends BaseDeprecations implements WithKotlinDeprecations {
            KotlinDeprecations(SmokeTestGradleRunner runner) {
                super(runner)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

                if (GradleContextualExecuter.notConfigCache) {
                    expectFilteredFileCollectionDeprecationWarning()
                }
            }.build()
        }
    
        static class SantaTrackerDeprecations extends BaseDeprecations implements WithAndroidDeprecations {
            SantaTrackerDeprecations(SmokeTestGradleRunner runner) {
                super(runner)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top