Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setGroovyClasspath (0.57 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)
Back to top