Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getZincClasspath (0.23 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaCompile.java

            return spec;
        }
    
        /**
         * Returns the classpath to use to load the Zinc incremental compiler. This compiler in turn loads the Scala compiler.
         */
        @Classpath
        public FileCollection getZincClasspath() {
            return zincClasspath;
        }
    
        public void setZincClasspath(FileCollection zincClasspath) {
            this.zincClasspath = zincClasspath;
        }
    
        /**
         * For testing only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/DefaultScalaJavaJointCompileSpec.java

            return scalaClasspath;
        }
    
        public void setScalaClasspath(Iterable<File> scalaClasspath) {
            this.scalaClasspath = scalaClasspath;
        }
    
        public Iterable<File> getZincClasspath() {
            return zincClasspath;
        }
    
        public void setZincClasspath(Iterable<File> zincClasspath) {
            this.zincClasspath = zincClasspath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.tasks.scala.ScalaCompile.getScalaCompilerPlugins()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (ScalaCompile.java:0)
    Method <org.gradle.api.tasks.scala.ScalaCompile.getZincClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (ScalaCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top