Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GroovyRuntime (0.56 sec)

  1. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

     *
     * <p>Example usage:
     *
     * <pre class='autoTested'>
     *     plugins {
     *         id 'groovy'
     *     }
     *
     *     repositories {
     *         mavenCentral()
     *     }
     *
     *     dependencies {
     *         implementation "org.codehaus.groovy:groovy-all:2.1.2"
     *     }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.GroovyRuntime.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 526 bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

            GroovyRuntime groovyRuntime = project.getExtensions().create(GROOVY_RUNTIME_EXTENSION_NAME, GroovyRuntime.class, project);
    
            configureCompileDefaults(project, groovyRuntime);
            configureSourceSetDefaults(project);
            configureGroovydoc(project, groovyRuntime);
        }
    
        private void configureCompileDefaults(Project project, GroovyRuntime groovyRuntime) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

        def setup() {
            project.pluginManager.apply(GroovyBasePlugin)
        }
    
        GroovyRuntime getGroovyRuntime() {
            project.extensions.getByType(GroovyRuntime)
        }
    
        def "inferred Groovy class path uses same 'groovy-all' Jar that is found on class path"() {
            when:
            def classpath = project.groovyRuntime.inferGroovyClasspath([project.file("other.jar"), project.file("groovy-all-2.1.2${classifier}.jar")])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top