Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for groovyDsl (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                .id(TextUtil.screamingSnakeToKebabCase("compilation-failed"), "Groovy DSL script compilation problem", GradleCoreProblemGroup.compilation().groovyDsl())
                .contextualLabel(message)
                .lineInFileLocation(source.getFileName(), lineNumber)
                .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        implementation(libs.errorProneAnnotations)
        implementation(libs.fastutil)
        implementation(libs.groovyAnt)
        implementation(libs.groovyJson)
        implementation(libs.groovyTemplates)
        implementation(libs.groovyXml)
        implementation(libs.slf4jApi)
        implementation(libs.tomlj) {
            // Used for its nullability annotations, not needed at runtime
            exclude("org.checkerframework", "checker-qual")
        }
    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. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.groovyAstbuilder)      { version { strictly(libs.groovyVersion) }}
            api(libs.groovyConsole)         { version { strictly(libs.groovyVersion) }}
            api(libs.groovySql)             { version { strictly(libs.groovyVersion) }}
            api(libs.groovyDatetime)        { version { strictly(libs.groovyVersion) }}
            api(libs.groovyDateUtil)        { 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)
  4. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val groovyJson = "$groovyGroup:groovy-json"
        val groovyNio = "$groovyGroup:groovy-nio"
        val groovySql = "$groovyGroup:groovy-sql"
        val groovyTemplates = "$groovyGroup:groovy-templates"
        val groovyTest = "$groovyGroup:groovy-test"
        val groovyXml = "$groovyGroup:groovy-xml"
        val gson = "com.google.code.gson:gson"
        val guava = "com.google.guava:guava"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                    this
            }
    
            class Spooling(
                val spoolFile: File,
                val executor: ManagedExecutor,
                /**
                 * [JsonModelWriter] uses Groovy's [CharBuf] for fast json encoding.
                 */
                val groovyJsonClassLoader: ClassLoader,
                val decorate: (PropertyProblem, ProblemSeverity) -> DecoratedPropertyProblem
            ) : State() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            testImplementation(libs.groovy)
            testImplementation(libs.groovyAnt)
            testImplementation(libs.groovyJson)
            testImplementation(libs.groovyTest)
            testImplementation(libs.groovyXml)
            testImplementation(libs.spock)
            testImplementation(libs.junit5Vintage)
            testImplementation(libs.spockJUnit4)
            testImplementation(libs.develocityTestAnnotation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
         * Gradle's bytecode processor replaces the Groovy's original {@link IndyInterface#bootstrap(MethodHandles.Lookup, String, MethodType, String, int)}
         * with this method to intercept potentially "interesting" calls and do some additional work.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                XmlParser parser = new XmlParser(false, true, true);
                try {
                    // If not set for >= JAXP 1.5 / Java8 won't allow referencing DTDs, e.g.
                    // using http URLs, because Groovy's XmlParser requests FEATURE_SECURE_PROCESSING
                    parser.setProperty(ACCESS_EXTERNAL_DTD, ALLOW_ANY_EXTERNAL_DTD);
                } catch (SAXNotRecognizedException ignore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        /**
         * Loads the JUnit XML test results file for the given, named test case. It
         * assumes the file path to that file and loads it using Groovy's XmlSlurper
         * which can then be used to extract information from the XML.
         */
        private static getTestResultsFileAsXml(TestFile sampleDir, String testClassName, String taskName = "test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     * <p>
     * The default implementations used by this task use <a href="https://docs.groovy-lang.org/latest/html/documentation/template-engines.html#_simpletemplateengine">Groovy's SimpleTemplateEngine</a>
     * to parse the template, with the following variables available:
     *
     * <ul>
     * <li>{@code applicationName}</li>
     * <li>{@code optsEnvironmentVar}</li>
     * <li>{@code exitEnvironmentVar}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top