Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for annotationProcessor (0.33 sec)

  1. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            writeAnnotationProcessorProject()
            buildFile << """
                    dependencies {
                        compileOnly project(":processor")
                        annotationProcessor project(":processor")
                    }
                """
        }
    
        private TestFile enableAnnotationProcessingOfJavaStubs() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                    toolchain {
                        languageVersion = JavaLanguageVersion.of(${testedJdkVersion.getMajorVersionNumber()})
                    }
                }
    
                dependencies {
                    annotationProcessor project(':processor')
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    +
    The classpath to use when compiling the source files of this source set.
    
    `annotationProcessorPath` — link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]::
    _Default value_: `${name}AnnotationProcessor` configuration
    +
    The processor path to use when compiling the source files of this source set.
    
    `runtimeClasspath` — link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <3> Add the Auto Value annotation processor to the suite's annotation processor classpath so that it will be run when compiling the tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            generatedSourceFile("scala", "main", fqcn)
        }
    
        TestFile generatedSourceFile(String language, String sourceSet, String fqcn) {
            file("build/generated/sources/annotationProcessor/", language, sourceSet, fqcn)
        }
    
        TestFile groovyTestSourceFile(@Language("groovy") String source) {
            file("src/test/groovy/Test.groovy") << source
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [listing]
    ----
    > Task :resolvableConfigurations
    --------------------------------------------------
    Configuration annotationProcessor
    --------------------------------------------------
    Description = Annotation processors and their dependencies for source set 'main'.
    
    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)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.6:annotation_processor_configuration]]
     * You should not put annotation processors on the compile classpath or declare them with the `-processorpath` compiler argument.
    +
    They should be added to the `annotationProcessor` configuration instead.
    If you don't want any processing, but your compile classpath contains a processor unintentionally (e.g. as part of a library you depend on), use the `-proc:none` compiler argument to ignore it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

        }
    
        @Override
        public WorkResult execute(T spec) {
            Set<AnnotationProcessorDeclaration> annotationProcessors = getEffectiveAnnotationProcessors(spec);
            spec.setEffectiveAnnotationProcessors(annotationProcessors);
            return delegate.execute(spec);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

            return effectiveAnnotationProcessors;
        }
    
        @Override
        public void setEffectiveAnnotationProcessors(Set<AnnotationProcessorDeclaration> annotationProcessors) {
            this.effectiveAnnotationProcessors = annotationProcessors;
        }
    
        @Override
        public Set<String> getClassesToProcess() {
            return classesToProcess;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

                    new CompilationClassBackupService(spec, result)
                );
            }
            Set<AnnotationProcessorDeclaration> annotationProcessors = spec.getEffectiveAnnotationProcessors();
            task = new AnnotationProcessingCompileTask(task, annotationProcessors, spec.getAnnotationProcessorPath(), result.getAnnotationProcessingResult());
            task = new ResourceCleaningCompilationTask(task, fileManager);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top