Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fileCollectionOf (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptClassPathProvider.kt

            gradleKotlinDsl.asFiles
        }
    
    
    fun gradleKotlinDslJarsOf(project: Project): FileCollection =
        project.fileCollectionOf(
            kotlinScriptClassPathProviderOf(project).gradleKotlinDslJars.asFiles.filter(::isGradleKotlinDslJar),
            "gradleKotlinDsl"
        )
    
    
    internal
    fun Project.fileCollectionOf(files: Collection<File>, name: String): FileCollection =
        serviceOf<FileCollectionFactory>().fixed(name, files)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top