Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setGroovyClasspath (0.23 sec)

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

            this.groovyCompileOptions = groovyCompileOptions;
        }
    
        @Override
        public List<File> getGroovyClasspath() {
            return groovyClasspath;
        }
    
        @Override
        public void setGroovyClasspath(List<File> groovyClasspath) {
            this.groovyClasspath = groovyClasspath;
        }
    
        @Override
        public boolean incrementalCompilationEnabled() {
    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/GroovyCompileSpec.java

    import java.util.List;
    
    public interface GroovyCompileSpec extends JvmLanguageCompileSpec {
        MinimalGroovyCompileOptions getGroovyCompileOptions();
    
        List<File> getGroovyClasspath();
    
        void setGroovyClasspath(List<File> classpath);
    
        boolean incrementalCompilationEnabled();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 975 bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/javadoc/GroovydocTest.groovy

            groovydoc.setLinks(newLinkSet)
    
            expect:
            groovydoc.getLinks() == newLinkSet
        }
    
        def "groovy classpath must not be empty"() {
            when:
            groovydoc.setGroovyClasspath(TestFiles.empty())
            groovydoc.generate()
    
            then:
            thrown(InvalidUserDataException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            spec.setAnnotationProcessorPath(Lists.newArrayList(compileOptions.getAnnotationProcessorPath() == null ? getProjectLayout().files() : compileOptions.getAnnotationProcessorPath()));
            spec.setGroovyClasspath(Lists.newArrayList(getGroovyClasspath()));
            spec.setCompileOptions(compileOptions);
            spec.setGroovyCompileOptions(new MinimalGroovyCompileOptions(groovyCompileOptions));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        public FileCollection getGroovyClasspath() {
            return groovyClasspath;
        }
    
        /**
         * Sets the classpath containing the Groovy library to be used.
         */
        public void setGroovyClasspath(FileCollection groovyClasspath) {
            this.groovyClasspath = groovyClasspath;
        }
    
        /**
         * Returns the classpath used to locate classes referenced by the documented sources.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top