Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gradleKotlinDslRuntimeGeneratedSources (0.36 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

     * were generated at build time instead.
     *
     * This is a first step to get the doc to be complete and will be revisited.
     */
    @CacheableTask
    public abstract class GradleKotlinDslRuntimeGeneratedSources extends DefaultTask {
    
        @Classpath
        public abstract ConfigurableFileCollection getInputClasspath();
    
        @OutputDirectory
        public abstract DirectoryProperty getGeneratedSources();
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

        }
    
        private static void wireInArtificialSourceSet(Project project, GradleDocumentationExtension extension) {
            TaskProvider<GradleKotlinDslRuntimeGeneratedSources> runtimeExtensions = project.getTasks()
                .register("gradleKotlinDslRuntimeGeneratedSources", GradleKotlinDslRuntimeGeneratedSources.class, task -> {
                    task.getGeneratedSources().set(project.getLayout().getBuildDirectory().dir("gradle-kotlin-dsl-extensions/sources"));
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 14:00:14 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top