Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for allGroovy (0.18 sec)

  1. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/tasks/DefaultGroovySourceSetTest.groovy

            sourceSet.groovy.filter.excludes.isEmpty()
    
            sourceSet.allGroovy.isEmpty()
            sourceSet.allGroovy.displayName =='<display-name> Groovy source'
            sourceSet.allGroovy.srcDirs.containsAll(sourceSet.groovy.files)
            sourceSet.allGroovy.filter.includes.containsAll(['**/*.groovy'])
            sourceSet.allGroovy.filter.excludes.isEmpty()
        }
    
        void canConfigureGroovySource() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/tasks/DefaultGroovySourceSet.java

        private final SourceDirectorySet allGroovy;
    
        @Inject
        public DefaultGroovySourceSet(String name, String displayName, ObjectFactory objectFactory) {
            this.groovy = createGroovySourceDirectorySet(name, displayName, objectFactory);
            allGroovy = objectFactory.sourceDirectorySet("all" + name, displayName + " Groovy source");
            allGroovy.source(groovy);
            allGroovy.getFilter().include("**/*.groovy");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.GroovySourceSet.xml

                    <td><literal>[<replaceable>${project.projectDir}</replaceable>/src/<replaceable>${sourceSet.name}</replaceable>/groovy]</literal></td>
                </tr>
                <tr>
                    <td>allGroovy</td>
                    <td><literal>[groovy]</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 928 bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    plugins.withType<GroovyBasePlugin> {
        the<SourceSetContainer>().all {
            tasks.register<Checkstyle>(getTaskName("checkstyle", "groovy")) {
                config = configFile("checkstyle-groovy.xml")
                source(allGroovy)
                classpath = compileClasspath
                reports.xml.outputLocation = checkstyle.reportsDir.resolve("${******@****.***}-groovy.xml")
            }
        }
    }
    
    codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.CodeNarc.xml

                    <td><literal>project.codenarc.ignoreFailures</literal></td>
                </tr>
                <tr>
                    <td>source</td>
                    <td><literal><replaceable>sourceSet</replaceable>.allGroovy</literal></td>
                </tr>
                <tr>
                    <td>codenarcClasspath</td>
                    <td><literal>project.configurations.codenarc</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    `allGroovy` — link:{javadocPath}/org/gradle/api/file/FileTree.html[FileTree] (read-only)::
    _Default value_: Not null
    +
    All Groovy source files of this source set. Contains only the `.groovy` files found in the Groovy source directories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top