Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,338 for Groovy4 (0.13 sec)

  1. .teamcity/src/main/kotlin/configurations/Gradleception.kt

        val idParts = mutableListOf<String>()
        val labels = mutableListOf<String>()
        val descriptionParts = mutableListOf<String>()
        if (bundleGroovy4) {
            labels += "Groovy 4.x"
            idParts += "Groovy4"
            descriptionParts += "bundling Groovy 4"
        }
        val vendor = buildJvm.vendor.displayName
        val version = buildJvm.version.major
        if (buildJvm != BuildToolBuildJvm) {
            idParts += "Java$jvmDescription"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                                          'javax/inject/Inject',
                                          'groovy/util/XmlSlurper',
                                          'groovyjarjarantlr/TokenStream',
                                          'net/rubygrapefruit/platform/FileInfo',
                                          'org/codehaus/groovy/ant/Groovyc',
                                          'org/apache/tools/ant/taskdefs/Ant',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/compileTaskClasspath/kotlin/src/main/groovy/Groovy.groovy

    class Groovy { }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/tasks/DefaultGroovySourceSetTest.groovy

            expect:
            sourceSet.groovy instanceof GroovySourceDirectorySet
            sourceSet.groovy.isEmpty()
            sourceSet.groovy.name == '<name>'
            sourceSet.groovy.displayName == '<display-name> Groovy source'
            def includes = sourceSet.groovy.filter.includes
            includes.size() == 2 && includes.containsAll(['**/*.groovy', '**/*.java'])
            sourceSet.groovy.filter.excludes.isEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyGradlePluginInitIntegrationTest.groovy

            when:
            run('init', '--type', 'groovy-gradle-plugin', '--dsl', scriptDsl.id)
    
            then:
            subprojectDir.file("src/main/groovy").assertHasDescendants("org/example/SomeThingPlugin.groovy")
            subprojectDir.file("src/test/groovy").assertHasDescendants("org/example/SomeThingPluginTest.groovy")
            subprojectDir.file("src/functionalTest/groovy").assertHasDescendants("org/example/SomeThingPluginFunctionalTest.groovy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 19:50:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

            "3.0.10"             | "-indy"    | "org.codehaus.groovy" | ["groovy", "groovy-ant", "groovy-templates", "groovy-json", "groovy-xml", "groovy-groovydoc", "groovy-astbuilder", "groovy-console", "groovy-datetime", "groovy-dateutil", "groovy-nio", "groovy-sql", "groovy-test"]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/compileTaskClasspath/groovy/src/main/groovy/Groovy.groovy

    class Groovy { }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovySourceFileClassNameConverterTest.groovy

                .hashSetValues()
                .build()
    
            sourceClassesMapping.put('MyClass.groovy', 'org.gradle.MyClass1')
            sourceClassesMapping.put('MyClass.groovy', 'org.gradle.MyClass2')
            sourceClassesMapping.put('YourClass.groovy', 'org.gradle.YourClass')
            sourceClassesMapping.put('YourOtherClass.groovy', 'org.gradle.YourClass')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

        void applyGroovyFileSet(List<String> fileSet) {
            file('src/main/groovy').forceDeleteDir()
            fileSet.each {
                file("src/main/groovy/${it.replace('.changed', '').replace('.failure', '') + (it.startsWith('J') ? '.java' : '.groovy')}").text = SOURCES[it]
            }
        }
    
        void applyMixFileSet(List<String> fileSet) {
            file('src/main/groovy').forceDeleteDir()
            file('src/main/java').forceDeleteDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/java/compile/AbstractGroovyCompileAvoidanceIntegrationSpec.groovy

            }
            buildFile << astTransformationDeclaration()
            file("a/src/main/groovy/MyAnnotation.groovy") << astTransformationAnnotation()
            def astTransformationSourceFile = file("a/src/main/groovy/MyASTTransformation.groovy")
            file("b/src/main/groovy/Main.groovy") << """
                @MyAnnotation
                public class Main {}
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top