Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for noVersionStamp (0.4 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/AntGroovydoc.java

            args.put("destdir", destDir);
            args.put("use", use);
            if (isAtLeast(version, "2.4.6")) {
                args.put("noTimestamp", noTimestamp);
                args.put("noVersionStamp", noVersionStamp);
            }
            args.put(access.name().toLowerCase(Locale.ROOT), true);
    
            args.put("author", includeAuthor);
            if (isAtLeast(version, "1.7.3")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

         */
        @Input
        public boolean isNoVersionStamp() {
            return noVersionStamp;
        }
    
        /**
         * Sets whether to include version stamp within hidden comment in generated HTML (Groovy >= 2.4.6).
         */
        public void setNoVersionStamp(boolean noVersionStamp) {
            this.noVersionStamp = noVersionStamp;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocStampsIntegrationTest.groovy

            """
        }
    
        def "time and version stamp can be enabled"() {
            when:
            buildFile << """
                groovydoc {
                  noTimestamp = false
                  noVersionStamp = false
                }
            """
    
            run "groovydoc"
    
            then:
            def text = file('build/docs/groovydoc/pkg/Thing.html').text
            text =~ GROOVY_DOC_TIMESTAMP_PATTERN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.javadoc.Groovydoc.xml

                </tr>
                <tr>
                    <td>noTimestamp</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>noVersionStamp</td>
                    <td><literal>false</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocIntegrationTest.groovy

            when:
            file("src/main/groovy/pkg/Thing.groovy") << """
                package pkg
    
                class Thing {}
            """
    
            buildFile << """
                groovydoc {
                    noVersionStamp = false
                }
            """
    
            then:
            succeeds "groovydoc"
    
            and:
            def text = file('build/docs/groovydoc/pkg/Thing.html').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top