Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for groovyBuildFile (0.23 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpIntegrationTest.groovy

    }
    
    dependencies {
        runtimeOnly "mygroup:myartifact:$myArtifactVersion"
    }
            """
    
            def groovyBuildFile = getFile(project: "groovy", "build.gradle")
            createJavaSourceDirs(groovyBuildFile)
            groovyBuildFile.parentFile.file("src/main/groovy").createDir()
    
            groovyBuildFile << """
    apply plugin: "eclipse-wtp"
    apply plugin: "groovy"
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

        private static final String RESULT_PREFIX = "Result: "
    
        def "test Groovy eager object types assignment for #description"() {
            def inputDeclaration = "$inputType input"
            groovyBuildFile(inputDeclaration, inputValue, "=")
    
            expect:
            runAndAssert("myTask", expectedResult)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
Back to top