Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DefaultGroovyJavaJointCompileSpec (0.43 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile;
    
    import java.io.File;
    import java.util.List;
    
    public class DefaultGroovyJavaJointCompileSpec extends DefaultJavaCompileSpec implements GroovyJavaJointCompileSpec {
        private MinimalGroovyCompileOptions groovyCompileOptions;
        private List<File> groovyClasspath;
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactory.java

        }
    
        @Override
        protected DefaultGroovyJavaJointCompileSpec getForkingSpec(File javaHome, int javaLanguageVersion) {
            return new DefaultForkingGroovyJavaJointCompileSpec(javaHome, javaLanguageVersion);
        }
    
        @Override
        protected DefaultGroovyJavaJointCompileSpec getDefaultSpec() {
            return new DefaultGroovyJavaJointCompileSpec();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

    import spock.lang.Specification
    
    class NormalizingGroovyCompilerTest extends Specification {
        org.gradle.language.base.internal.compile.Compiler<GroovyJavaJointCompileSpec> target = Mock()
        DefaultGroovyJavaJointCompileSpec spec = new DefaultGroovyJavaJointCompileSpec()
        NormalizingGroovyCompiler compiler = new NormalizingGroovyCompiler(target)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

            DefaultGroovyJavaJointCompileSpecFactory factory = new DefaultGroovyJavaJointCompileSpecFactory(options, null)
    
            when:
            def spec = factory.create()
    
            then:
            spec instanceof DefaultGroovyJavaJointCompileSpec
            ForkingJavaCompileSpec.isAssignableFrom(spec.getClass()) == implementsForking
            CommandLineJavaCompileSpec.isAssignableFrom(spec.getClass()) == implementsCommandLine
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.CompilationSourceDirs;
    import org.gradle.api.internal.tasks.compile.CompilerForkUtils;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpec;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpecFactory;
    import org.gradle.api.internal.tasks.compile.GroovyCompilerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top