Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for groovyDsl (0.37 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

                        idx = 0
                    }
                    currentBatch = nextBatch.batchName
                    return next()
                }
    
                // an alternative to Groovy's permutations method which is reproducible
                private static List<List<RenderableVersion>> permutations(Batch nextBatch) {
                    def generator = new PermutationGenerator<>(nextBatch.versions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    [[sec:ant_properties]]
    == Using Ant properties and references
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Types of the Java SE API, types of the Kotlin stdlib, and Groovy's GString are not supported, because they meet neither of those requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            'GString'  | ''                 | 'GString.EMPTY'                                  | 'groovy.lang.GString$1' | "Groovy's GString type is not supported as a nested type."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Alternatively, you can write plugins and tasks in a statically compiled language such as Java or Kotlin.
    
    *Warning:* Gradle's Groovy DSL relies heavily on Groovy’s dynamic features. To use static compilation in your plugins, switch to Java-like syntax.
    
    The following example defines a task that copies files without dynamic features:
    
    ====
    .src/main/groovy/MyPlugin.groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    - `groovy-nio`
    - `groovy-sql`
    - `groovy-templates`
    - `groovy-test`
    - `groovy-xml`
    
    But the following Groovy modules are *not* included:
    
    - `groovy-cli-picocli`
    - `groovy-docgenerator`
    - `groovy-groovysh`
    - `groovy-jmx`
    - `groovy-jsr223`
    - `groovy-macro`
    - `groovy-servlet`
    - `groovy-swing`
    - `groovy-test-junit5`
    - `groovy-testng`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * You can no longer use GPath syntax with link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html#withType-java.lang.Class-[tasks.withType()].
    +
    Use https://docs.groovy-lang.org/latest/html/documentation/#_spread_operator[Groovy's spread operator] instead.
    For example, you would replace `tasks.withType(JavaCompile).name` with `tasks.withType(JavaCompile)*.name`.
    
    [[changes_4.8]]
    == Upgrading from 4.7 and earlier
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The first is a minor inconvenience, but slashy strings have the advantage that you don't have to escape backslash ('\') characters in the regular expression.
    The second issue stems from Groovy's support for embedded expressions using `${ }` syntax in double-quoted and slashy strings.
    --
    
    The closure syntax for `rename()` is straightforward and can be used for any requirements that simple regular expressions can't handle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top