Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NormalizingGroovyCompiler (0.24 sec)

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

     */
    public class NormalizingGroovyCompiler implements Compiler<GroovyJavaJointCompileSpec> {
        private static final Logger LOGGER = Logging.getLogger(NormalizingGroovyCompiler.class);
        private final Compiler<GroovyJavaJointCompileSpec> delegate;
    
        public NormalizingGroovyCompiler(Compiler<GroovyJavaJointCompileSpec> delegate) {
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

        org.gradle.language.base.internal.compile.Compiler<GroovyJavaJointCompileSpec> target = Mock()
        DefaultGroovyJavaJointCompileSpec spec = new DefaultGroovyJavaJointCompileSpec()
        NormalizingGroovyCompiler compiler = new NormalizingGroovyCompiler(target)
    
        def setup() {
            spec.compileClasspath = [new File('Dep1.jar'), new File('Dep2.jar'), new File('Dep3.jar')]
            spec.groovyClasspath = spec.compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompilerFactory.java

            return new AnnotationProcessorDiscoveringCompiler<>(new NormalizingGroovyCompiler(groovyCompiler), processorDetector);
        }
    
        public static class DaemonSideCompiler implements Compiler<GroovyJavaJointCompileSpec> {
            private final ProjectLayout projectLayout;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top