Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultGroovyJavaJointCompileSpecFactory (0.7 sec)

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

    import org.gradle.jvm.toolchain.JavaInstallationMetadata;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public class DefaultGroovyJavaJointCompileSpecFactory extends AbstractJavaCompileSpecFactory<DefaultGroovyJavaJointCompileSpec> {
        public DefaultGroovyJavaJointCompileSpecFactory(CompileOptions compileOptions, @Nullable JavaInstallationMetadata javaInstallationMetadata) {
            super(compileOptions, javaInstallationMetadata);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

            options.fork = fork
            options.forkOptions.executable = executable ? Jvm.current().javacExecutable.absolutePath : null
            DefaultGroovyJavaJointCompileSpecFactory factory = new DefaultGroovyJavaJointCompileSpecFactory(options, null)
    
            when:
            def spec = factory.create()
    
            then:
            spec instanceof DefaultGroovyJavaJointCompileSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    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;
    import org.gradle.api.internal.tasks.compile.GroovyJavaJointCompileSpec;
    import org.gradle.api.internal.tasks.compile.HasCompileOptions;
    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