Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stageDocs (0.17 sec)

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

        }
    
        private void applyConventions(Project project, TaskContainer tasks, ObjectFactory objects, ProjectLayout layout, GradleDocumentationExtension extension) {
    
            TaskProvider<Sync> stageDocs = tasks.register("stageDocs", Sync.class, task -> {
                // release notes goes in the root of the docs
                task.from(extension.getReleaseNotes().getRenderedDocumentation());
    
                // DSL reference goes into dsl/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/README.md

    To generate the user manual for the final preview and see all changes, you normally want to run:
    
        ./gradlew stageDocs
    
    That will generate all the docs in the `build/docs` directory.
    
    For development and fast feedback you should use:
    
        ./gradlew stageDocs -PquickDocs
    
    Alternatively, if you want to serve the docs in a built-in webserver (http://localhost:8000), you can use:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

            groovyApi = project.uri("https://docs.groovy-lang.org/docs/groovy-${libs.groovyVersion}/html/gapi")
        }
        kotlinDslReference {
            dokkaVersionOverride = "1.9.10"
        }
    }
    
    tasks.named("stageDocs") {
        // Add samples to generated documentation
        from(samples.distribution.renderedDocumentation) {
            into("samples")
        }
    }
    
    samples {
        templates {
            javaAndroidApplication
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top