Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isJavaAnnotationProcessing (0.26 sec)

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

            this.stubDir = compileOptions.getStubDir();
            this.configurationScript = compileOptions.getConfigurationScript();
            this.javaAnnotationProcessing = compileOptions.isJavaAnnotationProcessing();
            this.parameters = compileOptions.isParameters();
            this.disabledGlobalASTTransformations = compileOptions.getDisabledGlobalASTTransformations().get();
        }
    
        public boolean isFailOnError() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * No annotation processing will be performed regardless, on Java or Groovy source.
         */
        @Input
        public boolean isJavaAnnotationProcessing() {
            return javaAnnotationProcessing;
        }
    
        /**
         * Sets whether Java annotation processors should process annotations on stubs.
         *
         * Defaults to {@code false}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            }
            return false;
        }
    
        private static boolean shouldProcessAnnotations(GroovyJavaJointCompileSpec spec) {
            return spec.getGroovyCompileOptions().isJavaAnnotationProcessing() && spec.annotationProcessingConfigured();
        }
    
        private void applyConfigurationScript(File configScript, CompilerConfiguration configuration) {
            VersionNumber version = parseGroovyVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.compile.GroovyCompileOptions.isFork()> does not have raw return type assignable to org.gradle.api.provider.Property in (GroovyCompileOptions.java:0)
    Method <org.gradle.api.tasks.compile.GroovyCompileOptions.isJavaAnnotationProcessing()> does not have raw return type assignable to org.gradle.api.provider.Property in (GroovyCompileOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top