Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for setAnnotationProcessorPath (0.78 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

        /**
         * The annotation processor path to use. When empty, no processing should be done. When not empty, processing should be done.
         */
        List<File> getAnnotationProcessorPath();
    
        void setAnnotationProcessorPath(List<File> path);
    
        void setEffectiveAnnotationProcessors(Set<AnnotationProcessorDeclaration> annotationProcessors);
    
        Set<AnnotationProcessorDeclaration> getEffectiveAnnotationProcessors();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

        }
    
        @Override
        public List<File> getAnnotationProcessorPath() {
            return annotationProcessorPath;
        }
    
        @Override
        public void setAnnotationProcessorPath(List<File> annotationProcessorPath) {
            this.annotationProcessorPath = annotationProcessorPath;
        }
    
        @Override
        public Set<AnnotationProcessorDeclaration> getEffectiveAnnotationProcessors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        }
    
        @Override
        public void setCompileClasspath(FileCollection classpath) {
            compileClasspath = classpath;
        }
    
        @Override
        public void setAnnotationProcessorPath(FileCollection annotationProcessorPath) {
            this.annotationProcessorPath = annotationProcessorPath;
        }
    
        @Override
        public void setRuntimeClasspath(FileCollection classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            if (isModule && !isSourcepathUserDefined) {
                compileOptions.setSourcepath(getProjectLayout().files(sourcesRoots));
            }
            spec.setAnnotationProcessorPath(compileOptions.getAnnotationProcessorPath() == null ? ImmutableList.of() : ImmutableList.copyOf(compileOptions.getAnnotationProcessorPath()));
            configureCompileOptions(spec);
            spec.setSourcesRoots(sourcesRoots);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            spec.setTempDir(getTemporaryDir());
            spec.setCompileClasspath(ImmutableList.copyOf(determineGroovyCompileClasspath()));
            configureCompatibilityOptions(spec);
            spec.setAnnotationProcessorPath(Lists.newArrayList(compileOptions.getAnnotationProcessorPath() == null ? getProjectLayout().files() : compileOptions.getAnnotationProcessorPath()));
            spec.setGroovyClasspath(Lists.newArrayList(getGroovyClasspath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            configureCompatibilityOptions(spec);
            spec.setCompileOptions(getOptions());
            spec.setScalaCompileOptions(new MinimalScalaCompileOptions(scalaCompileOptions));
            spec.setAnnotationProcessorPath(compileOptions.getAnnotationProcessorPath() == null
                ? ImmutableList.of()
                : ImmutableList.copyOf(compileOptions.getAnnotationProcessorPath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         * then use {@code -proc:none} as a compiler argument.
         *
         * @param annotationProcessorPath The annotation processor path. Should not be null.
         * @since 4.6
         */
        void setAnnotationProcessorPath(FileCollection annotationProcessorPath);
    
        /**
         * Returns the classpath used to execute this source.
         *
         * @return The classpath. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            sourceSet.setCompileClasspath(compileClasspathConfiguration);
            sourceSet.setRuntimeClasspath(sourceSet.getOutput().plus(runtimeClasspathConfiguration));
            sourceSet.setAnnotationProcessorPath(annotationProcessorConfiguration);
        }
    
        private void configureCompileDefaults(final Project project, final DefaultJavaPluginExtension javaExtension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         *
         * @param annotationProcessorPath The annotation processor path, or {@code null} to disable annotation processing.
         * @since 3.4
         */
        public void setAnnotationProcessorPath(@Nullable FileCollection annotationProcessorPath) {
            this.annotationProcessorPath = annotationProcessorPath;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top