Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getJavadocCss (0.19 sec)

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

                task.setTitle("Gradle API " + version);
    
                Javadocs javadocs = extension.getJavadocs();
    
                // TODO: This should be part of Javadoc task
                task.getInputs().file(javadocs.getJavadocCss())
                        .withPropertyName("stylesheetFile")
                        .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Oct 16 13:03:20 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

         * Link to Groovy API to use when generating Javadoc
         */
        public abstract Property<URI> getGroovyApi();
    
        /**
         * The CSS file to style Javadocs with
         */
        public abstract RegularFileProperty getJavadocCss();
    
        /**
         * A collection of the final rendered Javaodcs
         */
        public abstract ConfigurableFileCollection getRenderedDocumentation();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 17 08:08:46 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top