Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for sourceDirectorySet (0.19 sec)

  1. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/tasks/DefaultGroovySourceSet.java

        private final GroovySourceDirectorySet groovy;
        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);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovySourceSet.java

         *
         * @return The Groovy/Java source. Never returns null.
         */
        SourceDirectorySet getGroovy();
    
        /**
         * Configures the Groovy source for this set.
         *
         * <p>The given closure is used to configure the {@link SourceDirectorySet} which contains the Groovy source.
         *
         * @param configureClosure The closure to use to configure the Groovy source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/AbstractLanguageSourceSet.java

        private final static Map<String, String> LANGUAGES = new HashMap<>();
    
        private final SourceDirectorySet source;
        private boolean generated;
        private Task generatorTask;
    
        public AbstractLanguageSourceSet(ComponentSpecIdentifier identifier, Class<? extends BuildableComponentSpec> publicType, SourceDirectorySet source) {
            super(identifier, publicType);
            this.source = source;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/CompilePrecompiledScriptPluginPlugins.kt

        @Transient
        private
        val sourceDirectorySet: SourceDirectorySet = project.objects.sourceDirectorySet(
            kotlinModuleName,
            "Precompiled script plugin plugins"
        )
    
        @get:InputFiles
        @get:IgnoreEmptyDirectories
        @get:PathSensitive(PathSensitivity.RELATIVE)
        val sourceFiles: FileTree = sourceDirectorySet
    
        fun sourceDir(dir: Provider<Directory>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/DefaultScalaSourceDirectorySet.java

    import org.gradle.api.file.SourceDirectorySet;
    import org.gradle.api.internal.file.DefaultSourceDirectorySet;
    import org.gradle.api.tasks.ScalaSourceDirectorySet;
    
    import javax.inject.Inject;
    
    public abstract class DefaultScalaSourceDirectorySet extends DefaultSourceDirectorySet implements ScalaSourceDirectorySet {
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/tasks/DefaultGroovySourceDirectorySet.java

        @Inject
        public DefaultGroovySourceDirectorySet(SourceDirectorySet sourceDirectorySet, TaskDependencyFactory taskDependencyFactory) {
            super(sourceDirectorySet, taskDependencyFactory);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/HeaderExportingSourceSet.java

    import org.gradle.api.Incubating;
    import org.gradle.api.file.SourceDirectorySet;
    import org.gradle.language.base.LanguageSourceSet;
    
    /**
     * A source set that exposes headers
     */
    @Incubating
    public interface HeaderExportingSourceSet extends LanguageSourceSet {
        /**
         * The headers as a directory set.
         */
        SourceDirectorySet getExportedHeaders();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaSourceDirectorySet.java

     */
    
    package org.gradle.api.tasks;
    
    import org.gradle.api.file.SourceDirectorySet;
    
    /**
     * A {@code ScalaSourceDirectorySet} defines the properties and methods added to a {@link org.gradle.api.tasks.SourceSet} by the {@code ScalaPlugin}.
     *
     * @since 7.1
     */
    public interface ScalaSourceDirectorySet extends SourceDirectorySet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 943 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPlugins.kt

            override val kotlinSourceDirectorySet: SourceDirectorySet
                get() = project.sourceSets["main"].kotlin
        }
    }
    
    
    val Project.kotlinDslPluginOptions: KotlinDslPluginOptions
        get() = extensions.getByType()
    
    
    private
    val Project.sourceSets: SourceSetContainer
        get() = extensions.getByType()
    
    
    private
    val SourceSet.kotlin: SourceDirectorySet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            and: "has at least one header exporting source set"
            final headerDir = tmpDir.createDir("headerDir")
            def headerDirSet = Stub(SourceDirectorySet) {
                getSrcDirs() >> [headerDir]
            }
            def sourceDirSet = Stub(SourceDirectorySet) {
                getFiles() >> [tmpDir.createFile("input.src")]
            }
            def sourceSet = Stub(HeaderExportingSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top