Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getDisabledGlobalASTTransformations (0.41 sec)

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

            this.javaAnnotationProcessing = compileOptions.isJavaAnnotationProcessing();
            this.parameters = compileOptions.isParameters();
            this.disabledGlobalASTTransformations = compileOptions.getDisabledGlobalASTTransformations().get();
        }
    
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
    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/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                groovyCompile.setSource(groovySource);
                groovyCompile.getJavaLauncher().convention(getJavaLauncher(project));
    
                groovyCompile.getGroovyOptions().getDisabledGlobalASTTransformations().convention(Sets.newHashSet("groovy.grape.GrabAnnotationTransformation"));
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * @since 7.4
         */
        @Input
        public SetProperty<String> getDisabledGlobalASTTransformations() {
            return disabledGlobalASTTransformations;
        }
    
        /**
         * Returns the directory where Java stubs for Groovy classes will be stored during Java/Groovy joint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            } catch (NoSuchMethodError ignored) { /* method was only introduced in Groovy 1.8 */ }
    
            try {
                configuration.setDisabledGlobalASTTransformations(spec.getGroovyCompileOptions().getDisabledGlobalASTTransformations());
            } catch (NoSuchMethodError ignored) { /* method was only introduced in Groovy 2.0.0 */ }
    
            Map<String, Object> jointCompilationOptions = new HashMap<String, Object>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top