Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for Groovydoc (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

            gradleCoreUrls = gradleCoreUrls.plus(moduleRegistry.getExternalModule("groovy-datetime").getClasspath());
            gradleCoreUrls = gradleCoreUrls.plus(moduleRegistry.getExternalModule("groovy-groovydoc").getClasspath());
            gradleCoreUrls = gradleCoreUrls.plus(moduleRegistry.getExternalModule("groovy-json").getClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        runtimeOnly(libs.groovyAstbuilder)
        runtimeOnly(libs.groovyConsole)
        runtimeOnly(libs.groovyDateUtil)
        runtimeOnly(libs.groovyDatetime)
        runtimeOnly(libs.groovyDoc)
        runtimeOnly(libs.groovyNio)
        runtimeOnly(libs.groovySql)
        runtimeOnly(libs.groovyTest)
    
        // The bump to SSHD 2.10.0 causes a global exclusion for `groovy-ant` -> `ant-junit`, so forcing it back in here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

     * <ul>
     * <li>A docbook book XML file containing the reference.</li>
     * <li>A meta-data file containing information about where the canonical documentation for each class can be found:
     * as dsl doc, javadoc or groovydoc.</li>
     * </ul>
     */
    @CacheableTask
    abstract class AssembleDslDocTask extends DefaultTask {
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        abstract RegularFileProperty getSourceFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        // used for compilation. Also each version of java comes with a separate javadoc tool.
    
        // TODO: Should Javadoc even live on a generic JVM target? May be can call it withDocumentationJar?
        // Scala and groovy have Groovydoc and Scaladoc. Kotlin has KDoc.
    
        /**
         * Configures this feature to publish a javadoc jar alongside the primary artifacts. As a result,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.groovyDateUtil)        { version { strictly(libs.groovyVersion) }}
            api(libs.groovyNio)             { version { strictly(libs.groovyVersion) }}
            api(libs.groovyDoc)             { version { strictly(libs.groovyVersion) }}
            api(libs.groovyJson)            { version { strictly(libs.groovyVersion) }}
            api(libs.groovyTemplates)       { version { strictly(libs.groovyVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    [source]
    ----
    tasks.register("copyTask",Copy) {
        from("source")
        into("target")
        include("*.war")
    }
    ----
    
    There are many task types developers can take advantage of, including `GroovyDoc`, `Zip`, `Jar`, `JacocoReport`, `Sign`, or `Delete`, which are available in the link:link:{groovyDslPath}/org.gradle.api.plugins.antlr.AntlrTask.html[DSL].
    
    [[sec:build_scripts_are_code]]
    [[sec:using_ant_tasks_tutorial]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    * Groovy toolchain:
        link:{groovyDslPath}/org.gradle.api.tasks.compile.GroovyCompile.html[GroovyCompile],
        link:{groovyDslPath}/org.gradle.api.tasks.javadoc.Groovydoc.html[Groovydoc]
    * Scala toolchain:
        link:{groovyDslPath}/org.gradle.api.tasks.scala.ScalaCompile.html[ScalaCompile],
        `org.gradle.language.scala.tasks.PlatformScalaCompile` (removed),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[groovydoc_option_improvements]]
    ==== Groovydoc `includePrivate` property is deprecated
    There is a new `link:{groovyDslPath}/org.gradle.api.tasks.javadoc.Groovydoc.html#org.gradle.api.tasks.javadoc.Groovydoc:access[access]` property that allows finer control over what is included in the Groovydoc.
    
    [[use_providers_to_run_external_processes]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    The `localGroovy()` dependency will include these Groovy modules:
    
    - `groovy`
    - `groovy-ant`
    - `groovy-astbuilder`
    - `groovy-console`
    - `groovy-datetime`
    - `groovy-dateutil`
    - `groovy-groovydoc`
    - `groovy-json`
    - `groovy-nio`
    - `groovy-sql`
    - `groovy-templates`
    - `groovy-test`
    - `groovy-xml`
    
    But the following Groovy modules are *not* included:
    
    - `groovy-cli-picocli`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.javadoc.Groovydoc.getAntGroovydoc()> has arguments/return type org.gradle.api.internal.tasks.AntGroovydoc that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Groovydoc.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top