Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 202 for SourceSet (0.24 sec)

  1. platforms/documentation/docs/src/docs/dsl/plugins.xml

        </plugin>
        <plugin id="scala" description="Scala Plugin">
            <extends targetClass="org.gradle.api.tasks.SourceSet" id="scala" extensionClass="org.gradle.api.tasks.ScalaSourceDirectorySet"/>
        </plugin>
        <plugin id="antlr" description="Antlr Plugin">
            <extends targetClass="org.gradle.api.tasks.SourceSet" id="antlr" extensionClass="org.gradle.api.plugins.antlr.AntlrSourceDirectorySet"/>
        </plugin>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovySourceSet.java

    /**
     * A {@code GroovySourceSet} defines the properties and methods added to a {@link SourceSet} by the {@link
     * org.gradle.api.plugins.GroovyPlugin}.
     *
     * @deprecated Using convention to contribute to source sets is deprecated. You can configure the groovy sources via the {@code GroovySourceDirectorySet} extension (e.g.
    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/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

                collectSchemaOf(target.repositories, typeOfRepositoryHandler)
                // WARN eagerly realize all source sets
                sourceSetsOf(target)?.forEach { sourceSet ->
                    collectSchemaOf(sourceSet, typeOfSourceSet)
                }
            }
            if (target is NamedDomainObjectContainer<*>) {
                accessibleContainerSchema(target.collectionSchema).forEach { schema ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

                def languageDirs =
                    sourceRoots.sourceSets.collectMany { sourceSet ->
                        ["java", "kotlin"].collect { language ->
                            def hasLanguageDir = hasLanguageDir(sourceRoots.projectDir, sourceSet, language)
                            if (language in sourceRoots.languages) {
                                hasLanguageDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            return resolve(getInputs().withType(DependentSourceSet.class)).getAllResults();
        }
    
        @Override
        public Collection<NativeDependencySet> getLibs(DependentSourceSet sourceSet) {
            return resolve(Collections.singleton(sourceSet)).getAllResults();
        }
    
        @Override
        public void lib(Object notation) {
            libs.add(notation);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

         */
        @Deprecated
        public DefaultSourceDirectorySet(SourceDirectorySet sourceSet) {
            this(sourceSet, DefaultTaskDependencyFactory.withNoAssociatedProject());
        }
    
        public DefaultSourceDirectorySet(SourceDirectorySet sourceSet, TaskDependencyFactory taskDependencyFactory) {
            super(taskDependencyFactory);
            if (!(sourceSet instanceof DefaultSourceDirectorySet)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaSourceSet.java

    /**
     * A {@code ScalaSourceSet} defines the properties and methods added to a {@link
     * org.gradle.api.tasks.SourceSet} by the {@code ScalaPlugin}.
     *
     * @deprecated Using conventions to contribute source sets is deprecated. You can configure the groovy sources via the {@code ScalaSourceDirectorySet} extension (e.g.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionCustomTestSourceSet/kotlin/settings.gradle.kts

    rootProject.name = "automatic-classpath-injection-custom-test-sourceset"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

                    ivy {}
                }
    
                task assertSchema {
                    doLast {
                        assertSchemaIs(sourceSets,
                            "main": "SourceSet",
                            "test": "SourceSet"
                        )
                        assertSchemaIs(repositories,
                            // TODO: These should be more specific eventually
                            "maven": "ArtifactRepository",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    fun Project.enclosingSourceSetOf(file: File): EnclosingSourceSet? =
        findSourceSetOf(file)
            ?: findSourceSetOfFileIn(subprojects, file)
    
    
    private
    data class EnclosingSourceSet(val project: Project, val sourceSet: SourceSet)
    
    
    private
    fun findSourceSetOfFileIn(projects: Iterable<Project>, file: File): EnclosingSourceSet? =
        projects
            .asSequence()
            .mapNotNull { it.findSourceSetOf(file) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top