Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testAnnotationProcessor (0.32 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            when:
            def testAnnotationProcessor = project.configurations.getByName(JvmConstants.TEST_ANNOTATION_PROCESSOR_CONFIGURATION_NAME)
    
            then:
            testAnnotationProcessor.extendsFrom == [] as Set
            !testAnnotationProcessor.visible
            testAnnotationProcessor.transitive
            !testAnnotationProcessor.canBeConsumed
            testAnnotationProcessor.canBeResolved
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AbstractIncrementalAnnotationProcessingIntegrationTest.groovy

                dependencies {
                    compileOnly project(":annotation")
                    annotationProcessor project(":processor")
    
                    testCompileOnly project(":annotation")
                    testAnnotationProcessor project(":processor")
                }
            """
    
            processorProjectDir.file("build.gradle") << """
                dependencies {
                    implementation project(":annotation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

        - org.gradle.usage               = java-runtime
    Extended Configurations
        - implementation
        - runtimeOnly
    
    --------------------------------------------------
    Configuration testAnnotationProcessor
    --------------------------------------------------
    Annotation processors and their dependencies for source set 'test'.
    
    Attributes
        - org.gradle.category            = library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

        /**
         * The name of the test annotation processor configuration.
         *
         * @since 4.6
         */
        public static final String TEST_ANNOTATION_PROCESSOR_CONFIGURATION_NAME = "testAnnotationProcessor";
    
        /**
         * The name of the test runtime classpath configuration.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

        - org.gradle.usage               = java-runtime
    Extended Configurations
        - implementation
        - runtimeOnly
    
    --------------------------------------------------
    Configuration testAnnotationProcessor
    --------------------------------------------------
    Description = Annotation processors and their dependencies for source set 'test'.
    
    Attributes
        - org.gradle.category            = library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top